home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_emacs.idb / usr / freeware / share / emacs / 19.34 / lisp / loaddefs.el.z / loaddefs.el
Encoding:
Text File  |  1998-10-28  |  382.2 KB  |  8,982 lines

  1. ;;; loaddefs.el --- define standard autoloads and keys of other files
  2.  
  3. ;; Copyright (C) 1985,86,87,92,93,94,95,96 Free Software Foundation, Inc.
  4.  
  5. ;; Maintainer: FSF
  6. ;; Keywords: internal
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  22. ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  23. ;; Boston, MA 02111-1307, USA.
  24.  
  25. ;;; Commentary:
  26.  
  27. ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  28. ;;; Special formatting conventions are used in this file!
  29. ;;;
  30. ;;; a backslash-newline is used at the beginning of a documentation string
  31. ;;; when that string should be stored in the file etc/DOCnnn, not in core.
  32. ;;;
  33. ;;; Such strings read into Lisp as numbers (during the pure-loading phase).
  34. ;;;
  35. ;;; But you must obey certain rules to make sure the string is understood
  36. ;;; and goes into etc/DOCnnn properly.  Otherwise, the string will not go
  37. ;;; anywhere!
  38. ;;;
  39. ;;; The doc string must appear in the standard place in a call to
  40. ;;; defun, autoload, defvar or defconst.  No Lisp macros are recognized.
  41. ;;; The open-paren starting the definition must appear in column 0.
  42. ;;;
  43. ;;; In defvar and defconst, there is an additional rule:
  44. ;;; The double-quote that starts the string must be on the same
  45. ;;; line as the defvar or defconst.
  46. ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  47.  
  48. ;;; **********************************************************************
  49. ;;; You should never need to write autoloads by hand and put them here.
  50. ;;;
  51. ;;; It is no longer necessary.  Instead use autoload.el to maintain them
  52. ;;; for you.  Just insert ";;;###autoload" before defuns or defmacros you
  53. ;;; want to be autoloaded, or other forms you want copied into loaddefs.el
  54. ;;; (defvars, key definitions, etc.).  For example,
  55. ;;;    ;;;###autoload
  56. ;;;    (defun foobar () ....)
  57. ;;;    ;;;###autoload (define-key global-map "f" 'foobar)
  58. ;;;    ;;;###autoload
  59. ;;;    (defvar foobar-var nil "\
  60. ;;;    This is foobar-var's doc-string.")
  61. ;;;
  62. ;;; Then do M-x update-file-autoloads on the file to update loaddefs.el.
  63. ;;;
  64. ;;; You can also use M-x update-autoloads-from-directory to update the
  65. ;;; autoloads in loaddefs.el for all .el files in the directory specified.
  66. ;;; **********************************************************************
  67.  
  68. ;;; Code:
  69.  
  70. ;;; This code was NOT generated by autoload.el.
  71.  
  72. (defconst mode-line-buffer-identification (purecopy '("%F: %12b"))
  73.   "Mode-line control for identifying the buffer being displayed.
  74. Its default value is (\"%F: %12b\").  Under X, `%F' is replaced with `Emacs'.
  75. Major modes that edit things other than ordinary files may change this
  76. \(e.g. Info, Dired,...)")
  77.  
  78. (make-variable-buffer-local 'mode-line-buffer-identification)
  79.  
  80. (defconst mode-line-process nil
  81.   "Mode-line control for displaying info on process status.
  82. Normally nil in most modes, since there is no process to display.")
  83.  
  84. (make-variable-buffer-local 'mode-line-process)
  85.  
  86. (defconst mode-line-modified (purecopy '("--%1*%1+-"))
  87.   "Mode-line control for displaying whether current buffer is modified.")
  88.  
  89. (make-variable-buffer-local 'mode-line-modified)
  90.  
  91. (setq-default mode-line-format
  92.   (list (purecopy "")
  93.    'mode-line-modified
  94.    'mode-line-buffer-identification
  95.    (purecopy "   ")
  96.    'global-mode-string
  97.    (purecopy "   %[(")
  98.    'mode-name 'mode-line-process 'minor-mode-alist
  99.    (purecopy "%n")
  100.    (purecopy ")%]--")
  101.    (purecopy '(line-number-mode "L%l--"))
  102.    (purecopy '(column-number-mode "C%c--"))
  103.    (purecopy '(-3 . "%p"))
  104.    (purecopy "-%-")))
  105.  
  106. (defvar minor-mode-alist nil "\
  107. Alist saying how to show minor modes in the mode line.
  108. Each element looks like (VARIABLE STRING);
  109. STRING is included in the mode line iff VARIABLE's value is non-nil.
  110.  
  111. Actually, STRING need not be a string; any possible mode-line element
  112. is okay.  See `mode-line-format'.")
  113. (setq minor-mode-alist (mapcar 'purecopy
  114.                    '((abbrev-mode " Abbrev")
  115.                  (overwrite-mode overwrite-mode)
  116.                  (auto-fill-function " Fill")
  117.                  ;; not really a minor mode...
  118.                  (defining-kbd-macro " Def"))))
  119.  
  120. ;; These variables are used by autoloadable packages.
  121. ;; They are defined here so that they do not get overridden
  122. ;; by the loading of those packages.
  123.  
  124. ;; Names in directory that end in one of these
  125. ;; are ignored in completion,
  126. ;; making it more likely you will get a unique match.
  127. (setq completion-ignored-extensions
  128.       (cond ((or (eq system-type 'ms-dos) (eq system-type 'windows-nt))
  129.          '(".o" ".elc" "~" ".bin" ".bak" ".obj" ".map"
  130.            ".dvi" ".toc" ".log" ".aux" ".a" ".ln"
  131.            ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt"))
  132.         ((eq system-type 'vax-vms)
  133.          '(".obj" ".elc" ".exe" ".bin" ".lbin" ".sbin"
  134.            ".dvi" ".toc" ".log" ".aux"
  135.            ".lof" ".brn" ".rnt" ".mem" ".lni" ".lis"
  136.            ".olb" ".tlb" ".mlb" ".hlb" ".glo" ".idx" ".lot" ".fmt"))
  137.         (t
  138.          '(".o" ".elc" "~" ".bin" ".lbin" ".fasl"
  139.            ".dvi" ".toc" ".log" ".aux" ".a" ".ln"
  140.            ".lof" ".blg" ".bbl" ".glo" ".idx" ".lot" ".fmt"))))
  141.  
  142. (setq debug-ignored-errors
  143.       '(beginning-of-line beginning-of-buffer end-of-line
  144.     end-of-buffer end-of-file buffer-read-only
  145.           "^Previous command was not a yank$"
  146.     "^Minibuffer window is not active$"
  147.     "^End of history; no next item$"
  148.     "^Beginning of history; no preceding item$"
  149.     "^No recursive edit is in progress$"
  150.     "^Changes to be undone are outside visible portion of buffer$"
  151.     "^No undo information in this buffer$"
  152.     "^No further undo information$"
  153.     "^Save not confirmed$"
  154.     "^Recover-file cancelled\\.$"
  155.  
  156.     ;; comint
  157.     "^Not at command line$"
  158.     "^Empty input ring$"
  159.     "^No history$"
  160.     "^Not found$";; To common?
  161.     "^Current buffer has no process$"
  162.  
  163.     ;; dabbrev
  164.     "^No dynamic expansion for \".*\" found\\.$"
  165.     "^No further dynamic expansions for \".*\" found\\.$"
  166.     "^No further dynamic expansions for `.*' found$"
  167.  
  168.     ;; Completion
  169.     "^To complete, the point must be after a symbol at least [0-9]* character long\\.$"
  170.     "^The string \".*\" is too short to be saved as a completion\\.$"
  171.  
  172.     ;; Compile
  173.     "^No more errors\\( yet\\|\\)$"
  174.  
  175.     ;; Gnus
  176.     "^NNTP: Connection closed\\.$"
  177.  
  178.     ;; info
  179.     "^Node has no Previous$"
  180.     "^No \".*\" in index$"
  181.  
  182.     ;; imenu
  183.     "^No items suitable for an index found in this buffer\\.$"
  184.     "^The mode \".*\" does not take full advantage of imenu\\.el yet\\.$"
  185.  
  186.     ;; ispell
  187.     "^No word found to check!$"
  188.  
  189.     ;; mh-e
  190.     "^Cursor not pointing to message$"
  191.     "^There is no other window$"
  192.  
  193.     ;; man
  194.     "^No manpage [0-9]* found$"
  195.  
  196.     ;; etags
  197.     "^No tags table in use!  Use .* to select one\\.$"
  198.     "^There is no default tag$"
  199.     "^No previous tag locations$"
  200.     "^File .* is not a valid tags table$"
  201.     "^No \\(more \\|\\)tags \\(matching\\|containing\\) "
  202.     "^Rerun etags: `.*' not found in "
  203.     "^All files processed\\.$"
  204.     "^No .* or .* in progress.$"
  205.     "^File .* not in current tags tables$"
  206.     "No tags table loaded."
  207.     "^Nothing to complete$"
  208.  
  209.     ;; BBDB
  210.     "^no previous record$"
  211.     "^no next record$"))
  212.  
  213.  
  214. (make-variable-buffer-local 'indent-tabs-mode)
  215.  
  216. ;; This is here to avoid autoloading etags on M-TAB.
  217. ;; M-x visit-tags-table will autoload etags, which will redefine complete-tag.
  218. (defun complete-tag ()
  219.   "Perform tags completion on the text around point.
  220. Completes to the set of names listed in the current tags table.
  221. The string to complete is chosen in the same way as the default
  222. for \\[find-tag] (which see)."
  223.   (interactive)
  224.   (error (substitute-command-keys
  225.       "No tags table loaded.  Try \\[visit-tags-table].")))
  226.  
  227. ;; Reduce total amount of space we must allocate during this function
  228. ;; that we will not need to keep permanently.
  229. (garbage-collect)
  230.  
  231. (define-key ctl-x-map "n" (make-sparse-keymap))
  232. (define-key ctl-x-map "r" (make-sparse-keymap))
  233.  
  234. (setq help-event-list '(help f1))
  235.  
  236. ;These commands are defined in editfns.c
  237. ;but they are not assigned to keys there.
  238. (put 'narrow-to-region 'disabled t)
  239. (define-key ctl-x-map "nn" 'narrow-to-region)
  240. (define-key ctl-x-map "nw" 'widen)
  241. ;; (define-key ctl-x-map "n" 'narrow-to-region)
  242. ;; (define-key ctl-x-map "w" 'widen)
  243.  
  244. (define-key global-map "\C-j" 'newline-and-indent)
  245. (define-key global-map "\C-m" 'newline)
  246. (define-key global-map "\C-o" 'open-line)
  247. (define-key esc-map "\C-o" 'split-line)
  248. (define-key global-map "\C-q" 'quoted-insert)
  249. (define-key esc-map "^" 'delete-indentation)
  250. (define-key esc-map "\\" 'delete-horizontal-space)
  251. (define-key esc-map "m" 'back-to-indentation)
  252. (define-key ctl-x-map "\C-o" 'delete-blank-lines)
  253. (define-key esc-map " " 'just-one-space)
  254. (define-key esc-map "z" 'zap-to-char)
  255. (define-key esc-map "=" 'count-lines-region)
  256. (define-key ctl-x-map "=" 'what-cursor-position)
  257. (define-key esc-map ":" 'eval-expression)
  258. ;; Define ESC ESC : like ESC : for people who type ESC ESC out of habit.
  259. (define-key esc-map "\M-:" 'eval-expression)
  260. ;; Changed from C-x ESC so that function keys work following C-x.
  261. (define-key ctl-x-map "\e\e" 'repeat-complex-command)
  262. ;; New binding analogous to M-:.
  263. (define-key ctl-x-map "\M-:" 'repeat-complex-command)
  264. (define-key ctl-x-map "u" 'advertised-undo)
  265. ;; Many people are used to typing C-/ on X terminals and getting C-_.
  266. (define-key global-map [?\C-/] 'undo)
  267. (define-key global-map "\C-_" 'undo)
  268. (define-key esc-map "!" 'shell-command)
  269. (define-key esc-map "|" 'shell-command-on-region)
  270.  
  271. ;; This is an experiment--make up and down arrows do history.
  272. (define-key minibuffer-local-map [up] 'previous-history-element)
  273. (define-key minibuffer-local-map [down] 'next-history-element)
  274. (define-key minibuffer-local-ns-map [up] 'previous-history-element)
  275. (define-key minibuffer-local-ns-map [down] 'next-history-element)
  276. (define-key minibuffer-local-completion-map [up] 'previous-history-element)
  277. (define-key minibuffer-local-completion-map [down] 'next-history-element)
  278. (define-key minibuffer-local-must-match-map [up] 'previous-history-element)
  279. (define-key minibuffer-local-must-match-map [down] 'next-history-element)
  280.  
  281. (define-key global-map "\C-u" 'universal-argument)
  282. (let ((i ?0))
  283.   (while (<= i ?9)
  284.     (define-key esc-map (char-to-string i) 'digit-argument)
  285.     (setq i (1+ i))))
  286. (define-key esc-map "-" 'negative-argument)
  287. ;; Define control-digits.
  288. (let ((i ?0))
  289.   (while (<= i ?9)
  290.     (define-key global-map (read (format "[?\\C-%c]" i)) 'digit-argument)
  291.     (setq i (1+ i))))
  292. (define-key global-map [?\C--] 'negative-argument)
  293. ;; Define control-meta-digits.
  294. (let ((i ?0))
  295.   (while (<= i ?9)
  296.     (define-key esc-map (read (format "[?\\C-%c]" i)) 'digit-argument)
  297.     (setq i (1+ i))))
  298. (define-key global-map [?\C-\M--] 'negative-argument)
  299.  
  300. (define-key global-map "\C-k" 'kill-line)
  301. (define-key global-map "\C-w" 'kill-region)
  302. (define-key esc-map "w" 'kill-ring-save)
  303. (define-key esc-map "\C-w" 'append-next-kill)
  304. (define-key global-map "\C-y" 'yank)
  305. (define-key esc-map "y" 'yank-pop)
  306.  
  307. ;; (define-key ctl-x-map "a" 'append-to-buffer)
  308.  
  309. (define-key global-map "\C-@" 'set-mark-command)
  310. ;; Many people are used to typing C-SPC and getting C-@.
  311. (define-key global-map [?\C-\ ] 'set-mark-command)
  312. (define-key ctl-x-map "\C-x" 'exchange-point-and-mark)
  313. (define-key ctl-x-map "\C-@" 'pop-global-mark)
  314. (define-key ctl-x-map [?\C-\ ] 'pop-global-mark)
  315.  
  316. (define-key global-map "\C-n" 'next-line)
  317. (define-key global-map "\C-p" 'previous-line)
  318. (define-key ctl-x-map "\C-n" 'set-goal-column)
  319.  
  320. ;;(defun function-key-error ()
  321. ;;  (interactive)
  322. ;;  (error "That function key is not bound to anything."))
  323.  
  324. (define-key global-map [menu] 'execute-extended-command)
  325. (define-key global-map [find] 'search-forward)
  326.  
  327. ;; natural bindings for terminal keycaps --- defined in X keysym order
  328. (define-key global-map [home]        'beginning-of-buffer)
  329. (define-key global-map [M-home]        'beginning-of-buffer-other-window)
  330. (define-key global-map [left]        'backward-char)
  331. (define-key global-map [up]        'previous-line)
  332. (define-key global-map [right]        'forward-char)
  333. (define-key global-map [down]        'next-line)
  334. (define-key global-map [prior]        'scroll-down)
  335. (define-key global-map [next]        'scroll-up)
  336. (define-key global-map [C-up]        'backward-paragraph)
  337. (define-key global-map [C-down]        'forward-paragraph)
  338. (define-key global-map [C-prior]    'scroll-right)
  339. (define-key global-map [C-next]        'scroll-left)
  340. (define-key global-map [M-next]        'scroll-other-window)
  341. (define-key global-map [M-prior]    'scroll-other-window-down)
  342. (define-key global-map [end]        'end-of-buffer)
  343. (define-key global-map [M-end]        'end-of-buffer-other-window)
  344. (define-key global-map [begin]        'beginning-of-buffer)
  345. (define-key global-map [M-begin]    'beginning-of-buffer-other-window)
  346. ;; (define-key global-map [select]    'function-key-error)
  347. ;; (define-key global-map [print]    'function-key-error)
  348. (define-key global-map [execute]    'execute-extended-command)
  349. (define-key global-map [insert]        'overwrite-mode)
  350. (define-key global-map [C-insert]    'kill-ring-save)
  351. (define-key global-map [S-insert]    'yank)
  352. (define-key global-map [undo]        'undo)
  353. (define-key global-map [redo]        'repeat-complex-command)
  354. ;; (define-key global-map [clearline]    'function-key-error)
  355. (define-key global-map [insertline]    'open-line)
  356. (define-key global-map [deleteline]    'kill-line)
  357. ;; (define-key global-map [insertchar]    'function-key-error)
  358. (define-key global-map [deletechar]    'delete-char)
  359. ;; (define-key global-map [backtab]    'function-key-error)
  360. ;; (define-key global-map [f1]        'function-key-error)
  361. ;; (define-key global-map [f2]        'function-key-error)
  362. ;; (define-key global-map [f3]        'function-key-error)
  363. ;; (define-key global-map [f4]        'function-key-error)
  364. ;; (define-key global-map [f5]        'function-key-error)
  365. ;; (define-key global-map [f6]        'function-key-error)
  366. ;; (define-key global-map [f7]        'function-key-error)
  367. ;; (define-key global-map [f8]        'function-key-error)
  368. ;; (define-key global-map [f9]        'function-key-error)
  369. ;; (define-key global-map [f10]        'function-key-error)
  370. ;; (define-key global-map [f11]        'function-key-error)
  371. ;; (define-key global-map [f12]        'function-key-error)
  372. ;; (define-key global-map [f13]        'function-key-error)
  373. ;; (define-key global-map [f14]        'function-key-error)
  374. ;; (define-key global-map [f15]        'function-key-error)
  375. ;; (define-key global-map [f16]        'function-key-error)
  376. ;; (define-key global-map [f17]        'function-key-error)
  377. ;; (define-key global-map [f18]        'function-key-error)
  378. ;; (define-key global-map [f19]        'function-key-error)
  379. ;; (define-key global-map [f20]        'function-key-error)
  380. ;; (define-key global-map [f21]        'function-key-error)
  381. ;; (define-key global-map [f22]        'function-key-error)
  382. ;; (define-key global-map [f23]        'function-key-error)
  383. ;; (define-key global-map [f24]        'function-key-error)
  384. ;; (define-key global-map [f25]        'function-key-error)
  385. ;; (define-key global-map [f26]        'function-key-error)
  386. ;; (define-key global-map [f27]        'function-key-error)
  387. ;; (define-key global-map [f28]        'function-key-error)
  388. ;; (define-key global-map [f29]        'function-key-error)
  389. ;; (define-key global-map [f30]        'function-key-error)
  390. ;; (define-key global-map [f31]        'function-key-error)
  391. ;; (define-key global-map [f32]        'function-key-error)
  392. ;; (define-key global-map [f33]        'function-key-error)
  393. ;; (define-key global-map [f34]        'function-key-error)
  394. ;; (define-key global-map [f35]        'function-key-error)
  395. ;; (define-key global-map [kp-backtab]    'function-key-error)
  396. ;; (define-key global-map [kp-space]    'function-key-error)
  397. ;; (define-key global-map [kp-tab]        'function-key-error)
  398. ;; (define-key global-map [kp-enter]    'function-key-error)
  399. ;; (define-key global-map [kp-f1]        'function-key-error)
  400. ;; (define-key global-map [kp-f2]        'function-key-error)
  401. ;; (define-key global-map [kp-f3]        'function-key-error)
  402. ;; (define-key global-map [kp-f4]        'function-key-error)
  403. ;; (define-key global-map [kp-multiply]    'function-key-error)
  404. ;; (define-key global-map [kp-add]        'function-key-error)
  405. ;; (define-key global-map [kp-separator]    'function-key-error)
  406. ;; (define-key global-map [kp-subtract]    'function-key-error)
  407. ;; (define-key global-map [kp-decimal]    'function-key-error)
  408. ;; (define-key global-map [kp-divide]    'function-key-error)
  409. ;; (define-key global-map [kp-0]        'function-key-error)
  410. ;; (define-key global-map [kp-1]        'function-key-error)
  411. ;; (define-key global-map [kp-2]        'function-key-error)
  412. ;; (define-key global-map [kp-3]        'function-key-error)
  413. ;; (define-key global-map [kp-4]        'function-key-error)
  414. ;; (define-key global-map [kp-5]        'recenter)
  415. ;; (define-key global-map [kp-6]        'function-key-error)
  416. ;; (define-key global-map [kp-7]        'function-key-error)
  417. ;; (define-key global-map [kp-8]        'function-key-error)
  418. ;; (define-key global-map [kp-9]        'function-key-error)
  419. ;; (define-key global-map [kp-equal]    'function-key-error)
  420.  
  421. ;; X11R6 distinguishes these keys from the non-kp keys.
  422. ;; Make them behave like the non-kp keys unless otherwise bound.
  423. (define-key function-key-map [kp-home] [home])
  424. (define-key function-key-map [kp-left] [left])
  425. (define-key function-key-map [kp-up] [up])
  426. (define-key function-key-map [kp-right] [right])
  427. (define-key function-key-map [kp-down] [down])
  428. (define-key function-key-map [kp-prior] [prior])
  429. (define-key function-key-map [kp-next] [next])
  430. (define-key function-key-map [M-kp-next] [M-next])
  431. (define-key function-key-map [kp-end] [end])
  432. (define-key function-key-map [kp-begin] [begin])
  433. (define-key function-key-map [kp-insert] [insert])
  434. (define-key function-key-map [kp-delete] [delete])
  435.  
  436. (define-key global-map [mouse-movement] 'ignore)
  437.  
  438. (define-key global-map "\C-t" 'transpose-chars)
  439. (define-key esc-map "t" 'transpose-words)
  440. (define-key esc-map "\C-t" 'transpose-sexps)
  441. (define-key ctl-x-map "\C-t" 'transpose-lines)
  442.  
  443. (define-key esc-map ";" 'indent-for-comment)
  444. (define-key esc-map "j" 'indent-new-comment-line)
  445. (define-key esc-map "\C-j" 'indent-new-comment-line)
  446. (define-key ctl-x-map ";" 'set-comment-column)
  447. (define-key ctl-x-map "f" 'set-fill-column)
  448. (define-key ctl-x-map "$" 'set-selective-display)
  449.  
  450. (define-key esc-map "@" 'mark-word)
  451. (define-key esc-map "f" 'forward-word)
  452. (define-key esc-map "b" 'backward-word)
  453. (define-key esc-map "d" 'kill-word)
  454. (define-key esc-map "\177" 'backward-kill-word)
  455.  
  456. (define-key esc-map "<" 'beginning-of-buffer)
  457. (define-key esc-map ">" 'end-of-buffer)
  458. (define-key ctl-x-map "h" 'mark-whole-buffer)
  459. (define-key esc-map "\\" 'delete-horizontal-space)
  460.  
  461. (defalias 'mode-specific-command-prefix (make-sparse-keymap))
  462. (defconst mode-specific-map (symbol-function 'mode-specific-command-prefix)
  463.   "Keymap for characters following C-c.")
  464. (define-key global-map "\C-c" 'mode-specific-command-prefix)
  465.  
  466. (global-set-key [M-right]  'forward-word)
  467. (global-set-key [M-left]   'backward-word)
  468. ;; ilya@math.ohio-state.edu says these bindings are standard on PC editors.
  469. (global-set-key [C-right]  'forward-word)
  470. (global-set-key [C-left]   'backward-word)
  471. ;; This is not quite compatible, but at least is analogous
  472. (global-set-key [C-delete]   'backward-kill-word)
  473. ;; This is "move to the clipboard", or as close as we come.
  474. (global-set-key [S-delete] 'kill-region)
  475.  
  476. (define-key esc-map "\C-f" 'forward-sexp)
  477. (define-key esc-map "\C-b" 'backward-sexp)
  478. (define-key esc-map "\C-u" 'backward-up-list)
  479. (define-key esc-map "\C-@" 'mark-sexp)
  480. (define-key esc-map [?\C-\ ] 'mark-sexp)
  481. (define-key esc-map "\C-d" 'down-list)
  482. (define-key esc-map "\C-k" 'kill-sexp)
  483. (define-key global-map [C-M-delete] 'backward-kill-sexp)
  484. (define-key global-map [C-M-backspace] 'backward-kill-sexp)
  485. (define-key esc-map "\C-n" 'forward-list)
  486. (define-key esc-map "\C-p" 'backward-list)
  487. (define-key esc-map "\C-a" 'beginning-of-defun)
  488. (define-key esc-map "\C-e" 'end-of-defun)
  489. (define-key esc-map "\C-h" 'mark-defun)
  490. (define-key esc-map "(" 'insert-parentheses)
  491. (define-key esc-map ")" 'move-past-close-and-reindent)
  492. (define-key esc-map "\t" 'lisp-complete-symbol)
  493.  
  494. (define-key ctl-x-map "\C-e" 'eval-last-sexp)
  495.  
  496. (define-key ctl-x-map "r\C-@" 'point-to-register)
  497. (define-key ctl-x-map [?r ?\C-\ ] 'point-to-register)
  498. (define-key ctl-x-map "r " 'point-to-register)
  499. (define-key ctl-x-map "rj" 'jump-to-register)
  500. (define-key ctl-x-map "rs" 'copy-to-register)
  501. (define-key ctl-x-map "rx" 'copy-to-register)
  502. (define-key ctl-x-map "ri" 'insert-register)
  503. (define-key ctl-x-map "rg" 'insert-register)
  504. (define-key ctl-x-map "rr" 'copy-rectangle-to-register)
  505. (define-key ctl-x-map "rc" 'clear-rectangle)
  506. (define-key ctl-x-map "rk" 'kill-rectangle)
  507. (define-key ctl-x-map "rd" 'delete-rectangle)
  508. (define-key ctl-x-map "ry" 'yank-rectangle)
  509. (define-key ctl-x-map "ro" 'open-rectangle)
  510. (define-key ctl-x-map "rt" 'string-rectangle)
  511. (define-key ctl-x-map "rw" 'window-configuration-to-register)
  512. (define-key ctl-x-map "rf" 'frame-configuration-to-register)
  513.  
  514. ;; These key bindings are deprecated; use the above C-x r map instead.
  515. ;; We use these aliases so \[...] will show the C-x r bindings instead.
  516. (defalias 'point-to-register-compatibility-binding 'point-to-register)
  517. (defalias 'jump-to-register-compatibility-binding 'jump-to-register)
  518. (defalias 'copy-to-register-compatibility-binding 'copy-to-register)
  519. (defalias 'insert-register-compatibility-binding 'insert-register)
  520. (define-key ctl-x-map "/" 'point-to-register-compatibility-binding)
  521. (define-key ctl-x-map "j" 'jump-to-register-compatibility-binding)
  522. (define-key ctl-x-map "x" 'copy-to-register-compatibility-binding)
  523. (define-key ctl-x-map "g" 'insert-register-compatibility-binding)
  524. ;; (define-key ctl-x-map "r" 'copy-rectangle-to-register)
  525.  
  526. (define-key esc-map "q" 'fill-paragraph)
  527. ;; (define-key esc-map "g" 'fill-region)
  528. (define-key ctl-x-map "." 'set-fill-prefix)
  529.  
  530. (define-key esc-map "{" 'backward-paragraph)
  531. (define-key esc-map "}" 'forward-paragraph)
  532. (define-key esc-map "h" 'mark-paragraph)
  533. (define-key esc-map "a" 'backward-sentence)
  534. (define-key esc-map "e" 'forward-sentence)
  535. (define-key esc-map "k" 'kill-sentence)
  536. (define-key ctl-x-map "\177" 'backward-kill-sentence)
  537.  
  538. (define-key ctl-x-map "[" 'backward-page)
  539. (define-key ctl-x-map "]" 'forward-page)
  540. (define-key ctl-x-map "\C-p" 'mark-page)
  541. (define-key ctl-x-map "l" 'count-lines-page)
  542. (define-key ctl-x-map "np" 'narrow-to-page)
  543. ;; (define-key ctl-x-map "p" 'narrow-to-page)
  544.  
  545. (define-key ctl-x-map "al" 'add-mode-abbrev)
  546. (define-key ctl-x-map "a\C-a" 'add-mode-abbrev)
  547. (define-key ctl-x-map "ag" 'add-global-abbrev)
  548. (define-key ctl-x-map "a+" 'add-mode-abbrev)
  549. (define-key ctl-x-map "aig" 'inverse-add-global-abbrev)
  550. (define-key ctl-x-map "ail" 'inverse-add-mode-abbrev)
  551. ;; (define-key ctl-x-map "a\C-h" 'inverse-add-global-abbrev)
  552. (define-key ctl-x-map "a-" 'inverse-add-global-abbrev)
  553. (define-key ctl-x-map "ae" 'expand-abbrev)
  554. (define-key ctl-x-map "a'" 'expand-abbrev)
  555. ;; (define-key ctl-x-map "\C-a" 'add-mode-abbrev)
  556. ;; (define-key ctl-x-map "\+" 'add-global-abbrev)
  557. ;; (define-key ctl-x-map "\C-h" 'inverse-add-mode-abbrev)
  558. ;; (define-key ctl-x-map "\-" 'inverse-add-global-abbrev)
  559. (define-key esc-map "'" 'abbrev-prefix-mark)
  560. (define-key ctl-x-map "'" 'expand-abbrev)
  561.  
  562.  
  563. ;;; Generated autoloads follow (made by autoload.el).
  564.  
  565. ;;; To sort them, execute the following after narrowing
  566. ;;; to a region starting just after the following formfeed (control-l)
  567. ;;; and ending just after the last formfeed in the file.
  568.  
  569. ;;;(sort-regexp-fields nil "\n*.*\n.*from \\(.*\\)[^ ]* " "\\1"
  570. ;;;            (point-min) (point-max))
  571.  
  572. ;;;### (autoloads (ada-make-filename-from-adaname ada-mode) "ada-mode" "ada-mode.el" (12557 20396))
  573. ;;; Generated autoloads from ada-mode.el
  574.  
  575. (autoload (quote ada-mode) "ada-mode" "\
  576. Ada Mode is the major mode for editing Ada code.
  577.  
  578. Bindings are as follows: (Note: 'LFD' is control-j.)
  579.  
  580.  Indent line                                          '\\[ada-tab]'
  581.  Indent line, insert newline and indent the new line. '\\[newline-and-indent]'
  582.  
  583.  Re-format the parameter-list point is in             '\\[ada-format-paramlist]'
  584.  Indent all lines in region                           '\\[ada-indent-region]'
  585.  Call external pretty printer program                 '\\[ada-call-pretty-printer]'
  586.  
  587.  Adjust case of identifiers and keywords in region    '\\[ada-adjust-case-region]'
  588.  Adjust case of identifiers and keywords in buffer    '\\[ada-adjust-case-buffer]'
  589.  
  590.  Call EXTERNAL pretty printer (if you have one)       '\\[ada-call-pretty-printer]'
  591.  
  592.  Fill comment paragraph                               '\\[ada-fill-comment-paragraph]'
  593.  Fill comment paragraph and justify each line         '\\[ada-fill-comment-paragraph-justify]'
  594.  Fill comment paragraph, justify and append postfix   '\\[ada-fill-comment-paragraph-postfix]'
  595.  
  596.  Next func/proc/task '\\[ada-next-procedure]'    Previous func/proc/task '\\[ada-previous-procedure]'
  597.  Next package        '\\[ada-next-package]'  Previous package        '\\[ada-previous-package]'
  598.  
  599.  Goto matching start of current 'end ...;'            '\\[ada-move-to-start]'
  600.  Goto end of current block                            '\\[ada-move-to-end]'
  601.  
  602. Comments are handled using standard GNU Emacs conventions, including:
  603.  Start a comment                                      '\\[indent-for-comment]'
  604.  Comment region                                       '\\[comment-region]'
  605.  Uncomment region                                     '\\[ada-uncomment-region]'
  606.  Continue comment on next line                        '\\[indent-new-comment-line]'
  607.  
  608. If you use imenu.el:
  609.  Display index-menu of functions & procedures         '\\[imenu]'
  610.  
  611. If you use find-file.el:
  612.  Switch to other file (Body <-> Spec)                 '\\[ff-find-other-file]'
  613.                                                    or '\\[ff-mouse-find-other-file]
  614.  Switch to other file in other window                 '\\[ada-ff-other-window]'
  615.                                                    or '\\[ff-mouse-find-other-file-other-window]
  616.  If you use this function in a spec and no body is available, it gets created
  617.  with body stubs.
  618.  
  619. If you use ada-xref.el:
  620.  Goto declaration:          '\\[ada-point-and-xref]' on the identifier
  621.                          or '\\[ada-goto-declaration]' with point on the identifier
  622.  Complete identifier:       '\\[ada-complete-identifier]'
  623.  Execute Gnatf:             '\\[ada-gnatf-current]'" t nil)
  624.  
  625. (autoload (quote ada-make-filename-from-adaname) "ada-mode" "\
  626. Determine the filename of a package/procedure from its own Ada name." t nil)
  627.  
  628. ;;;***
  629.  
  630. ;;;### (autoloads (add-log-current-defun change-log-mode add-change-log-entry-other-window add-change-log-entry find-change-log prompt-for-change-log-name) "add-log" "add-log.el" (12755 36002))
  631. ;;; Generated autoloads from add-log.el
  632.  
  633. (defvar add-log-full-name nil "\
  634. *Full name of user, for inclusion in ChangeLog daily headers.
  635. This defaults to the value returned by the `user-full-name' function.")
  636.  
  637. (defvar add-log-mailing-address nil "\
  638. *Electronic mail address of user, for inclusion in ChangeLog daily headers.
  639. This defaults to the value of `user-mail-address'.")
  640.  
  641. (autoload (quote prompt-for-change-log-name) "add-log" "\
  642. Prompt for a change log name." nil nil)
  643.  
  644. (autoload (quote find-change-log) "add-log" "\
  645. Find a change log file for \\[add-change-log-entry] and return the name.
  646.  
  647. Optional arg FILE-NAME specifies the file to use.
  648. If FILE-NAME is nil, use the value of `change-log-default-name'.
  649. If 'change-log-default-name' is nil, behave as though it were 'ChangeLog'
  650. \(or whatever we use on this operating system).
  651.  
  652. If 'change-log-default-name' contains a leading directory component, then
  653. simply find it in the current directory.  Otherwise, search in the current 
  654. directory and its successive parents for a file so named.
  655.  
  656. Once a file is found, `change-log-default-name' is set locally in the
  657. current buffer to the complete file name." nil nil)
  658.  
  659. (autoload (quote add-change-log-entry) "add-log" "\
  660. Find change log file and add an entry for today.
  661. Optional arg (interactive prefix) non-nil means prompt for user name and site.
  662. Second arg is file name of change log.  If nil, uses `change-log-default-name'.
  663. Third arg OTHER-WINDOW non-nil means visit in other window.
  664. Fourth arg NEW-ENTRY non-nil means always create a new entry at the front;
  665. never append to an existing entry." t nil)
  666.  
  667. (autoload (quote add-change-log-entry-other-window) "add-log" "\
  668. Find change log file in other window and add an entry for today.
  669. Optional arg (interactive prefix) non-nil means prompt for user name and site.
  670. Second arg is file name of change log.  If nil, uses `change-log-default-name'." t nil)
  671.  (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window)
  672.  
  673. (autoload (quote change-log-mode) "add-log" "\
  674. Major mode for editing change logs; like Indented Text Mode.
  675. Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74.
  676. New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window].
  677. Each entry behaves as a paragraph, and the entries for one day as a page.
  678. Runs `change-log-mode-hook'." t nil)
  679.  
  680. (autoload (quote add-log-current-defun) "add-log" "\
  681. Return name of function definition point is in, or nil.
  682.  
  683. Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...),
  684. Texinfo (@node titles), Perl, and Fortran.
  685.  
  686. Other modes are handled by a heuristic that looks in the 10K before
  687. point for uppercase headings starting in the first column or
  688. identifiers followed by `:' or `=', see variable
  689. `add-log-current-defun-header-regexp'.
  690.  
  691. Has a preference of looking backwards." nil nil)
  692.  
  693. ;;;***
  694.  
  695. ;;;### (autoloads (defadvice ad-add-advice) "advice" "advice.el" (12536 45574))
  696. ;;; Generated autoloads from advice.el
  697.  
  698. (defvar ad-redefinition-action (quote warn) "\
  699. *Defines what to do with redefinitions during Advice de/activation.
  700. Redefinition occurs if a previously activated function that already has an
  701. original definition associated with it gets redefined and then de/activated.
  702. In such a case we can either accept the current definition as the new
  703. original definition, discard the current definition and replace it with the
  704. old original, or keep it and raise an error.  The values `accept', `discard',
  705. `error' or `warn' govern what will be done.  `warn' is just like `accept' but
  706. it additionally prints a warning message.  All other values will be
  707. interpreted as `error'.")
  708.  
  709. (defvar ad-default-compilation-action (quote maybe) "\
  710. *Defines whether to compile advised definitions during activation.
  711. A value of `always' will result in unconditional compilation, `never' will
  712. always avoid compilation, `maybe' will compile if the byte-compiler is already
  713. loaded, and `like-original' will compile if the original definition of the
  714. advised function is compiled or a built-in function. Every other value will
  715. be interpreted as `maybe'. This variable will only be considered if the
  716. COMPILE argument of `ad-activate' was supplied as nil.")
  717.  
  718. (autoload (quote ad-add-advice) "advice" "\
  719. Adds a piece of ADVICE to FUNCTION's list of advices in CLASS.
  720. If FUNCTION already has one or more pieces of advice of the specified
  721. CLASS then POSITION determines where the new piece will go.  The value
  722. of POSITION can either be `first', `last' or a number where 0 corresponds
  723. to `first'.  Numbers outside the range will be mapped to the closest
  724. extreme position.  If there was already a piece of ADVICE with the same
  725. name, then the position argument will be ignored and the old advice
  726. will be overwritten with the new one.
  727.     If the FUNCTION was not advised already, then its advice info will be
  728. initialized.  Redefining a piece of advice whose name is part of the cache-id
  729. will clear the cache." nil nil)
  730.  
  731. (autoload (quote defadvice) "advice" "\
  732. Defines a piece of advice for FUNCTION (a symbol).
  733. The syntax of `defadvice' is as follows:
  734.  
  735.   (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...)
  736.     [DOCSTRING] [INTERACTIVE-FORM]
  737.     BODY... )
  738.  
  739. FUNCTION ::= Name of the function to be advised.
  740. CLASS ::= `before' | `around' | `after' | `activation' | `deactivation'.
  741. NAME ::= Non-nil symbol that names this piece of advice.
  742. POSITION ::= `first' | `last' | NUMBER. Optional, defaults to `first',
  743.     see also `ad-add-advice'.
  744. ARGLIST ::= An optional argument list to be used for the advised function
  745.     instead of the argument list of the original.  The first one found in
  746.     before/around/after-advices will be used.
  747. FLAG ::= `protect'|`disable'|`activate'|`compile'|`preactivate'|`freeze'.
  748.     All flags can be specified with unambiguous initial substrings.
  749. DOCSTRING ::= Optional documentation for this piece of advice.
  750. INTERACTIVE-FORM ::= Optional interactive form to be used for the advised
  751.     function.  The first one found in before/around/after-advices will be used.
  752. BODY ::= Any s-expression.
  753.  
  754. Semantics of the various flags:
  755. `protect': The piece of advice will be protected against non-local exits in
  756. any code that precedes it.  If any around-advice of a function is protected
  757. then automatically all around-advices will be protected (the complete onion).
  758.  
  759. `activate': All advice of FUNCTION will be activated immediately if
  760. FUNCTION has been properly defined prior to this application of `defadvice'.
  761.  
  762. `compile': In conjunction with `activate' specifies that the resulting
  763. advised function should be compiled.
  764.  
  765. `disable': The defined advice will be disabled, hence, it will not be used
  766. during activation until somebody enables it.
  767.  
  768. `preactivate': Preactivates the advised FUNCTION at macro-expansion/compile
  769. time.  This generates a compiled advised definition according to the current
  770. advice state that will be used during activation if appropriate.  Only use
  771. this if the `defadvice' gets actually compiled.
  772.  
  773. `freeze': Expands the `defadvice' into a redefining `defun/defmacro' according
  774. to this particular single advice.  No other advice information will be saved.
  775. Frozen advices cannot be undone, they behave like a hard redefinition of
  776. the advised function.  `freeze' implies `activate' and `preactivate'.  The
  777. documentation of the advised function can be dumped onto the `DOC' file
  778. during preloading.
  779.  
  780. Look at the file `advice.el' for comprehensive documentation." nil (quote macro))
  781.  
  782. ;;;***
  783.  
  784. ;;;### (autoloads (ange-ftp-hook-function) "ange-ftp" "ange-ftp.el" (12796 58959))
  785. ;;; Generated autoloads from ange-ftp.el
  786.  
  787. (autoload (quote ange-ftp-hook-function) "ange-ftp" nil nil nil)
  788.  
  789. (or (assoc "^/[^/:]*[^/:.]:" file-name-handler-alist) (setq file-name-handler-alist (cons (quote ("^/[^/:]*[^/:.]:" . ange-ftp-hook-function)) file-name-handler-alist)))
  790.  
  791. (or (assoc "^/[^/:]*\\'" file-name-handler-alist) (setq file-name-handler-alist (cons (quote ("^/[^/:]*\\'" . ange-ftp-completion-hook-function)) file-name-handler-alist)))
  792.  
  793. ;;;***
  794.  
  795. ;;;### (autoloads (appt-make-list) "appt" "appt.el" (12778 43089))
  796. ;;; Generated autoloads from appt.el
  797.  
  798. (defvar appt-issue-message t "\
  799. *Non-nil means check for appointments in the diary buffer.
  800. To be detected, the diary entry must have the time
  801. as the first thing on a line.")
  802.  
  803. (defvar appt-message-warning-time 12 "\
  804. *Time in minutes before an appointment that the warning begins.")
  805.  
  806. (defvar appt-audible t "\
  807. *Non-nil means beep to indicate appointment.")
  808.  
  809. (defvar appt-visible t "\
  810. *Non-nil means display appointment message in echo area.")
  811.  
  812. (defvar appt-display-mode-line t "\
  813. *Non-nil means display minutes to appointment and time on the mode line.")
  814.  
  815. (defvar appt-msg-window t "\
  816. *Non-nil means display appointment message in another window.")
  817.  
  818. (defvar appt-display-duration 10 "\
  819. *The number of seconds an appointment message is displayed.")
  820.  
  821. (defvar appt-display-diary t "\
  822. *Non-nil means to display the next days diary on the screen. 
  823. This will occur at midnight when the appointment list is updated.")
  824.  
  825. (autoload (quote appt-make-list) "appt" nil nil nil)
  826.  
  827. ;;;***
  828.  
  829. ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-command) "apropos" "apropos.el" (12682 43347))
  830. ;;; Generated autoloads from apropos.el
  831.  
  832. (fset (quote command-apropos) (quote apropos-command))
  833.  
  834. (autoload (quote apropos-command) "apropos" "\
  835. Shows commands (interactively callable functions) that match REGEXP.
  836. With optional prefix ARG or if `apropos-do-all' is non-nil, also show
  837. variables." t nil)
  838.  
  839. (autoload (quote apropos) "apropos" "\
  840. Show all bound symbols whose names match REGEXP.
  841. With optional prefix ARG or if `apropos-do-all' is non-nil, also show unbound
  842. symbols and key bindings, which is a little more time-consuming.
  843. Returns list of symbols and documentation found." t nil)
  844.  
  845. (autoload (quote apropos-value) "apropos" "\
  846. Show all symbols whose value's printed image matches REGEXP.
  847. With optional prefix ARG or if `apropos-do-all' is non-nil, also looks
  848. at the function and at the names and values of properties.
  849. Returns list of symbols and values found." t nil)
  850.  
  851. (autoload (quote apropos-documentation) "apropos" "\
  852. Show symbols whose documentation contain matches for REGEXP.
  853. With optional prefix ARG or if `apropos-do-all' is non-nil, also use
  854. documentation that is not stored in the documentation file and show key
  855. bindings.
  856. Returns list of symbols and documentation found." t nil)
  857.  
  858. ;;;***
  859.  
  860. ;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (12536 45574))
  861. ;;; Generated autoloads from arc-mode.el
  862.  
  863. (autoload (quote archive-mode) "arc-mode" "\
  864. Major mode for viewing an archive file in a dired-like way.
  865. You can move around using the usual cursor motion commands.
  866. Letters no longer insert themselves.
  867. Type `e' to pull a file out of the archive and into its own buffer;
  868. or click mouse-2 on the file's line in the archive mode buffer.
  869.  
  870. If you edit a sub-file of this archive (as with the `e' command) and
  871. save it, the contents of that buffer will be saved back into the
  872. archive.
  873.  
  874. \\{archive-mode-map}" nil nil)
  875.  
  876. ;;;***
  877.  
  878. ;;;### (autoloads (asm-mode) "asm-mode" "asm-mode.el" (12747 22249))
  879. ;;; Generated autoloads from asm-mode.el
  880.  
  881. (autoload (quote asm-mode) "asm-mode" "\
  882. Major mode for editing typical assembler code.
  883. Features a private abbrev table and the following bindings:
  884.  
  885. \\[asm-colon]    outdent a preceding label, tab to next tab stop.
  886. \\[tab-to-tab-stop]    tab to next tab stop.
  887. \\[asm-newline]    newline, then tab to next tab stop.
  888. \\[asm-comment]    smart placement of assembler comments.
  889.  
  890. The character used for making comments is set by the variable
  891. `asm-comment-char' (which defaults to `?;').
  892.  
  893. Alternatively, you may set this variable in `asm-mode-set-comment-hook',
  894. which is called near the beginning of mode initialization.
  895.  
  896. Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization.
  897.  
  898. Special commands:
  899. \\{asm-mode-map}
  900. " t nil)
  901.  
  902. ;;;***
  903.  
  904. ;;;### (autoloads (auto-show-mode) "auto-show" "auto-show.el" (12437 479))
  905. ;;; Generated autoloads from auto-show.el
  906.  
  907. (autoload (quote auto-show-mode) "auto-show" "\
  908. Turn automatic horizontal scroll mode on or off.
  909. With arg, turn auto scrolling on if arg is positive, off otherwise." t nil)
  910.  
  911. ;;;***
  912.  
  913. ;;;### (autoloads (define-auto-insert auto-insert) "autoinsert" "autoinsert.el" (12537 60155))
  914. ;;; Generated autoloads from autoinsert.el
  915.  
  916. (autoload (quote auto-insert) "autoinsert" "\
  917. Insert default contents into a new file if `auto-insert' is non-nil.
  918. Matches the visited file name against the elements of `auto-insert-alist'." t nil)
  919.  
  920. (autoload (quote define-auto-insert) "autoinsert" "\
  921. Associate CONDITION with (additional) ACTION in `auto-insert-alist'.
  922. Optional AFTER means to insert action after all existing actions for CONDITION,
  923. or if CONDITION had no actions, after all other CONDITIONs." nil nil)
  924.  
  925. ;;;***
  926.  
  927. ;;;### (autoloads (batch-update-autoloads update-autoloads-from-directory update-file-autoloads) "autoload" "autoload.el" (12543 11408))
  928. ;;; Generated autoloads from autoload.el
  929.  
  930. (autoload (quote update-file-autoloads) "autoload" "\
  931. Update the autoloads for FILE in `generated-autoload-file'
  932. \(which FILE might bind in its local variables)." t nil)
  933.  
  934. (autoload (quote update-autoloads-from-directory) "autoload" "\
  935. Update loaddefs.el with all the current autoloads from DIR, and no old ones.
  936. This uses `update-file-autoloads' (which see) do its work." t nil)
  937.  
  938. (autoload (quote batch-update-autoloads) "autoload" "\
  939. Update loaddefs.el autoloads in batch mode.
  940. Calls `update-autoloads-from-directory' on each command line argument." nil nil)
  941.  
  942. ;;;***
  943.  
  944. ;;;### (autoloads (mouse-avoidance-mode) "avoid" "avoid.el" (12633 49973))
  945. ;;; Generated autoloads from avoid.el
  946.  
  947. (autoload (quote mouse-avoidance-mode) "avoid" "\
  948. Set cursor avoidance mode to MODE.
  949. MODE should be one of the symbols `banish', `exile', `jump', `animate',
  950. `cat-and-mouse', `proteus', or `none'.
  951.  
  952. If MODE is nil, toggle mouse avoidance between `none` and `banish'
  953. modes.  Positive numbers and symbols other than the above are treated
  954. as equivalent to `banish'; negative numbers and `-' are equivalent to `none'.
  955.  
  956. Effects of the different modes: 
  957.  * banish: Move the mouse to the upper-right corner on any keypress.
  958.  * exile: Move the mouse to the corner only if the cursor gets too close,
  959.      and allow it to return once the cursor is out of the way.
  960.  * jump: If the cursor gets too close to the mouse, displace the mouse
  961.      a random distance & direction.
  962.  * animate: As `jump', but shows steps along the way for illusion of motion.
  963.  * cat-and-mouse: Same as `animate'.
  964.  * proteus: As `animate', but changes the shape of the mouse pointer too.
  965.  
  966. Whenever the mouse is moved, the frame is also raised.
  967.  
  968. \(see `mouse-avoidance-threshold' for definition of \"too close\",
  969. and `mouse-avoidance-nudge-dist' and `mouse-avoidance-nudge-var' for
  970. definition of \"random distance\".)" t nil)
  971.  
  972. ;;;***
  973.  
  974. ;;;### (autoloads (awk-mode) "awk-mode" "awk-mode.el" (12536 45574))
  975. ;;; Generated autoloads from awk-mode.el
  976.  
  977. (autoload (quote awk-mode) "awk-mode" "\
  978. Major mode for editing AWK code.
  979. This is much like C mode except for the syntax of comments.  It uses
  980. the same keymap as C mode and has the same variables for customizing
  981. indentation.  It has its own abbrev table and its own syntax table.
  982.  
  983. Turning on AWK mode calls the value of the variable `awk-mode-hook'
  984. with no args, if that value is non-nil." t nil)
  985.  
  986. ;;;***
  987.  
  988. ;;;### (autoloads (backquote) "backquote" "backquote.el" (12704 56580))
  989. ;;; Generated autoloads from backquote.el
  990.  
  991. (autoload (quote backquote) "backquote" "\
  992. Argument STRUCTURE describes a template to build.
  993.  
  994. The whole structure acts as if it were quoted except for certain
  995. places where expressions are evaluated and inserted or spliced in.
  996.  
  997. For example:
  998.  
  999. b              => (ba bb bc)        ; assume b has this value
  1000. `(a b c)       => (a b c)        ; backquote acts like quote
  1001. `(a ,b c)      => (a (ba bb bc) c)    ; insert the value of b
  1002. `(a ,@b c)     => (a ba bb bc c)    ; splice in the value of b
  1003.  
  1004. Vectors work just like lists.  Nested backquotes are permitted." nil (quote macro))
  1005.  
  1006. (defalias (quote \`) (symbol-function (quote backquote)))
  1007.  
  1008. ;;;***
  1009.  
  1010. ;;;### (autoloads (bibtex-mode) "bibtex" "bibtex.el" (12811 48222))
  1011. ;;; Generated autoloads from bibtex.el
  1012.  
  1013. (autoload (quote bibtex-mode) "bibtex" "\
  1014. Major mode for editing BibTeX files.
  1015. To submit a problem report, enter `\\[bibtex-submit-bug-report]' from a
  1016. bibtex-mode buffer.  This automatically sets up a mail buffer with
  1017. version information already added.  You just need to add a description
  1018. of the problem, including a reproducable test case and send the
  1019. message.
  1020.  
  1021. \\{bibtex-mode-map}
  1022.  
  1023. A command such as \\[bibtex-Book] will outline the fields for a BibTeX book entry.
  1024.  
  1025. The optional fields start with the string OPT, and thus ignored by BibTeX.
  1026. The OPT string may be removed from a field with \\[bibtex-remove-OPT].
  1027. \\[bibtex-kill-optional-field] kills the current optional field entirely.
  1028. \\[bibtex-remove-double-quotes-or-braces] removes the double-quotes or
  1029. braces around the text of the current field.  \\[bibtex-empty-field]
  1030. replaces the text of the current field with the default \"\" or {}.
  1031.  
  1032. The command \\[bibtex-clean-entry] cleans the current entry, i.e. (i) removes
  1033. double-quotes or braces from entirely numerical fields, (ii) removes
  1034. OPT from all non-empty optional fields, (iii) removes all empty
  1035. optional fields, and (iv) checks that no non-optional fields are empty.
  1036.  
  1037. Use \\[bibtex-find-text] to position the cursor at the end of the current field.
  1038. Use \\[bibtex-next-field] to move to end of the next field.
  1039.  
  1040. The following may be of interest as well:
  1041.  
  1042.   Functions:
  1043.     bibtex-entry
  1044.     bibtex-print-help-message
  1045.     bibtex-beginning-of-entry
  1046.     bibtex-end-of-entry
  1047.     bibtex-ispell-abstract
  1048.     bibtex-narrow-to-entry
  1049.     bibtex-hide-entry-bodies
  1050.     bibtex-sort-entries
  1051.     bibtex-validate-buffer
  1052.     bibtex-pop-previous
  1053.     bibtex-pop-next
  1054.     bibtex-complete-string
  1055.  
  1056.   Variables:
  1057.     bibtex-field-left-delimiter
  1058.     bibtex-field-right-delimiter
  1059.     bibtex-include-OPTcrossref
  1060.     bibtex-include-OPTkey
  1061.     bibtex-include-OPTannote
  1062.     bibtex-mode-user-optional-fields
  1063.     bibtex-clean-entry-zap-empty-opts
  1064.     bibtex-sort-ignore-string-entries
  1065.     bibtex-maintain-sorted-entries
  1066.     bibtex-entry-field-alist
  1067.     bibtex-predefined-strings
  1068.     bibtex-string-files
  1069.  
  1070. ---------------------------------------------------------
  1071. Entry to this mode calls the value of bibtex-mode-hook if that value is
  1072. non-nil." t nil)
  1073.  
  1074. ;;;***
  1075.  
  1076. ;;;### (autoloads (blackbox) "blackbox" "blackbox.el" (12536 45574))
  1077. ;;; Generated autoloads from blackbox.el
  1078.  
  1079. (autoload (quote blackbox) "blackbox" "\
  1080. Play blackbox.  Optional prefix argument is the number of balls;
  1081. the default is 4.
  1082.  
  1083. What is blackbox?
  1084.  
  1085. Blackbox is a game of hide and seek played on an 8 by 8 grid (the
  1086. Blackbox).  Your opponent (Emacs, in this case) has hidden several
  1087. balls (usually 4) within this box.  By shooting rays into the box and
  1088. observing where they emerge it is possible to deduce the positions of
  1089. the hidden balls.  The fewer rays you use to find the balls, the lower
  1090. your score.
  1091.  
  1092. Overview of play:
  1093.  
  1094. \\<blackbox-mode-map>To play blackbox, type \\[blackbox].  An optional prefix argument
  1095. specifies the number of balls to be hidden in the box; the default is
  1096. four.
  1097.  
  1098. The cursor can be moved around the box with the standard cursor
  1099. movement keys.
  1100.  
  1101. To shoot a ray, move the cursor to the edge of the box and press SPC.
  1102. The result will be determined and the playfield updated.
  1103.  
  1104. You may place or remove balls in the box by moving the cursor into the
  1105. box and pressing \\[bb-romp].
  1106.  
  1107. When you think the configuration of balls you have placed is correct,
  1108. press \\[bb-done].  You will be informed whether you are correct or
  1109. not, and be given your score.  Your score is the number of letters and
  1110. numbers around the outside of the box plus five for each incorrectly
  1111. placed ball.  If you placed any balls incorrectly, they will be
  1112. indicated with `x', and their actual positions indicated with `o'.
  1113.  
  1114. Details:
  1115.  
  1116. There are three possible outcomes for each ray you send into the box:
  1117.  
  1118.     Detour: the ray is deflected and emerges somewhere other than
  1119.         where you sent it in.  On the playfield, detours are
  1120.         denoted by matching pairs of numbers -- one where the
  1121.         ray went in, and the other where it came out.
  1122.  
  1123.     Reflection: the ray is reflected and emerges in the same place
  1124.         it was sent in.  On the playfield, reflections are
  1125.         denoted by the letter `R'.
  1126.  
  1127.     Hit:    the ray strikes a ball directly and is absorbed.  It does
  1128.         not emerge from the box.  On the playfield, hits are
  1129.         denoted by the letter `H'.
  1130.  
  1131. The rules for how balls deflect rays are simple and are best shown by
  1132. example.
  1133.  
  1134. As a ray approaches a ball it is deflected ninety degrees.  Rays can
  1135. be deflected multiple times.  In the diagrams below, the dashes
  1136. represent empty box locations and the letter `O' represents a ball.
  1137. The entrance and exit points of each ray are marked with numbers as
  1138. described under \"Detour\" above.  Note that the entrance and exit
  1139. points are always interchangeable.  `*' denotes the path taken by the
  1140. ray.
  1141.  
  1142. Note carefully the relative positions of the ball and the ninety
  1143. degree deflection it causes.
  1144.  
  1145.     1
  1146.   - * - - - - - -         - - - - - - - -         - - - - - - - -
  1147.   - * - - - - - -         - - - - - - - -         - - - - - - - -
  1148. 1 * * - - - - - -         - - - - - - - -         - O - - - - O -
  1149.   - - O - - - - -         - - O - - - - -         - - * * * * - -
  1150.   - - - - - - - -         - - - * * * * * 2     3 * * * - - * - -
  1151.   - - - - - - - -         - - - * - - - -         - - - O - * - -
  1152.   - - - - - - - -         - - - * - - - -         - - - - * * - -
  1153.   - - - - - - - -         - - - * - - - -         - - - - * - O -
  1154.                                 2                         3
  1155.  
  1156. As mentioned above, a reflection occurs when a ray emerges from the same point
  1157. it was sent in.  This can happen in several ways:
  1158.  
  1159.  
  1160.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  1161.   - - - - O - - -         - - O - O - - -          - - - - - - - -
  1162. R * * * * - - - -         - - - * - - - -          O - - - - - - -
  1163.   - - - - O - - -         - - - * - - - -        R - - - - - - - -
  1164.   - - - - - - - -         - - - * - - - -          - - - - - - - -
  1165.   - - - - - - - -         - - - * - - - -          - - - - - - - -
  1166.   - - - - - - - -       R * * * * - - - -          - - - - - - - -
  1167.   - - - - - - - -         - - - - O - - -          - - - - - - - -
  1168.  
  1169. In the first example, the ray is deflected downwards by the upper
  1170. ball, then left by the lower ball, and finally retraces its path to
  1171. its point of origin.  The second example is similar.  The third
  1172. example is a bit anomalous but can be rationalized by realizing the
  1173. ray never gets a chance to get into the box.  Alternatively, the ray
  1174. can be thought of as being deflected downwards and immediately
  1175. emerging from the box.
  1176.  
  1177. A hit occurs when a ray runs straight into a ball:
  1178.  
  1179.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  1180.   - - - - - - - -         - - - - - - - -          - - - - O - - -
  1181.   - - - - - - - -         - - - - O - - -        H * * * * - - - -
  1182.   - - - - - - - -       H * * * * O - - -          - - - * - - - -
  1183.   - - - - - - - -         - - - - O - - -          - - - O - - - -
  1184. H * * * O - - - -         - - - - - - - -          - - - - - - - -
  1185.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  1186.   - - - - - - - -         - - - - - - - -          - - - - - - - -
  1187.  
  1188. Be sure to compare the second example of a hit with the first example of
  1189. a reflection." t nil)
  1190.  
  1191. ;;;***
  1192.  
  1193. ;;;### (autoloads (bookmark-menu-delete bookmark-menu-rename bookmark-menu-locate bookmark-menu-jump bookmark-menu-insert bookmark-bmenu-list bookmark-load bookmark-save bookmark-write bookmark-delete bookmark-insert bookmark-rename bookmark-insert-location bookmark-relocate bookmark-jump bookmark-set) "bookmark" "bookmark.el" (12689 4676))
  1194. ;;; Generated autoloads from bookmark.el
  1195.  
  1196. (if (symbolp (key-binding "r")) nil (progn (define-key ctl-x-map "rb" (quote bookmark-jump)) (define-key ctl-x-map "rm" (quote bookmark-set)) (define-key ctl-x-map "rl" (quote bookmark-bmenu-list))))
  1197.  
  1198. (defvar bookmark-map nil "\
  1199. Keymap containing bindings to bookmark functions.
  1200. It is not bound to any key by default: to bind it
  1201. so that you have a bookmark prefix, just use `global-set-key' and bind a
  1202. key of your choice to `bookmark-map'.  All interactive bookmark
  1203. functions have a binding in this keymap.")
  1204.  
  1205. (define-prefix-command (quote bookmark-map))
  1206.  
  1207. (define-key bookmark-map "x" (quote bookmark-set))
  1208.  
  1209. (define-key bookmark-map "m" (quote bookmark-set))
  1210.  
  1211. (define-key bookmark-map "j" (quote bookmark-jump))
  1212.  
  1213. (define-key bookmark-map "g" (quote bookmark-jump))
  1214.  
  1215. (define-key bookmark-map "i" (quote bookmark-insert))
  1216.  
  1217. (define-key bookmark-map "e" (quote edit-bookmarks))
  1218.  
  1219. (define-key bookmark-map "f" (quote bookmark-insert-location))
  1220.  
  1221. (define-key bookmark-map "r" (quote bookmark-rename))
  1222.  
  1223. (define-key bookmark-map "d" (quote bookmark-delete))
  1224.  
  1225. (define-key bookmark-map "l" (quote bookmark-load))
  1226.  
  1227. (define-key bookmark-map "w" (quote bookmark-write))
  1228.  
  1229. (define-key bookmark-map "s" (quote bookmark-save))
  1230.  
  1231. (add-hook (quote kill-emacs-hook) (function (lambda nil (and (featurep (quote bookmark)) bookmark-alist (bookmark-time-to-save-p t) (bookmark-save)))))
  1232.  
  1233. (autoload (quote bookmark-set) "bookmark" "\
  1234. Set a bookmark named NAME inside a file.
  1235. If name is nil, then the user will be prompted.
  1236. With prefix arg, will not overwrite a bookmark that has the same name
  1237. as NAME if such a bookmark already exists, but instead will \"push\"
  1238. the new bookmark onto the bookmark alist.  Thus the most recently set
  1239. bookmark with name NAME would be the one in effect at any given time,
  1240. but the others are still there, should you decide to delete the most
  1241. recent one.
  1242.  
  1243. To yank words from the text of the buffer and use them as part of the
  1244. bookmark name, type C-w while setting a bookmark.  Successive C-w's
  1245. yank successive words.
  1246.  
  1247. Typing C-u inserts the name of the last bookmark used in the buffer
  1248. \(as an aid in using a single bookmark name to track your progress
  1249. through a large file).  If no bookmark was used, then C-u inserts the
  1250. name of the file being visited.
  1251.  
  1252. Use \\[bookmark-delete] to remove bookmarks (you give it a name,
  1253. and it removes only the first instance of a bookmark with that name from
  1254. the list of bookmarks.)" t nil)
  1255.  
  1256. (autoload (quote bookmark-jump) "bookmark" "\
  1257. Jump to bookmark BOOKMARK (a point in some file).  
  1258. You may have a problem using this function if the value of variable
  1259. `bookmark-alist' is nil.  If that happens, you need to load in some
  1260. bookmarks.  See help on function `bookmark-load' for more about
  1261. this.
  1262.  
  1263. If the file pointed to by BOOKMARK no longer exists, you will be asked
  1264. if you wish to give the bookmark a new location, and bookmark-jump
  1265. will then jump to the new location, as well as recording it in place
  1266. of the old one in the permanent bookmark record." t nil)
  1267.  
  1268. (autoload (quote bookmark-relocate) "bookmark" "\
  1269. Relocate BOOKMARK to another file (reading file name with minibuffer).
  1270. This makes an already existing bookmark point to that file, instead of
  1271. the one it used to point at.  Useful when a file has been renamed
  1272. after a bookmark was set in it." t nil)
  1273.  
  1274. (autoload (quote bookmark-insert-location) "bookmark" "\
  1275. Insert the name of the file associated with BOOKMARK.
  1276. Optional second arg NO-HISTORY means don't record this in the
  1277. minibuffer history list `bookmark-history'." t nil)
  1278.  
  1279. (defalias (quote bookmark-locate) (quote bookmark-insert-location))
  1280.  
  1281. (autoload (quote bookmark-rename) "bookmark" "\
  1282. Change the name of OLD bookmark to NEW name.
  1283. If called from keyboard, prompt for OLD and NEW.  If called from
  1284. menubar, select OLD from a menu and prompt for NEW.
  1285.  
  1286. If called from Lisp, prompt for NEW if only OLD was passed as an
  1287. argument.  If called with two strings, then no prompting is done.  You
  1288. must pass at least OLD when calling from Lisp.
  1289.  
  1290. While you are entering the new name, consecutive C-w's insert
  1291. consecutive words from the text of the buffer into the new bookmark
  1292. name." t nil)
  1293.  
  1294. (autoload (quote bookmark-insert) "bookmark" "\
  1295. Insert the text of the file pointed to by bookmark BOOKMARK.  
  1296. You may have a problem using this function if the value of variable
  1297. `bookmark-alist' is nil.  If that happens, you need to load in some
  1298. bookmarks.  See help on function `bookmark-load' for more about
  1299. this." t nil)
  1300.  
  1301. (autoload (quote bookmark-delete) "bookmark" "\
  1302. Delete BOOKMARK from the bookmark list.  
  1303. Removes only the first instance of a bookmark with that name.  If
  1304. there are one or more other bookmarks with the same name, they will
  1305. not be deleted.  Defaults to the \"current\" bookmark (that is, the
  1306. one most recently used in this file, if any).
  1307. Optional second arg BATCH means don't update the bookmark list buffer,
  1308. probably because we were called from there." t nil)
  1309.  
  1310. (autoload (quote bookmark-write) "bookmark" "\
  1311. Write bookmarks to a file (reading the file name with the minibuffer).
  1312. Don't use this in Lisp programs; use `bookmark-save' instead." t nil)
  1313.  
  1314. (autoload (quote bookmark-save) "bookmark" "\
  1315. Save currently defined bookmarks.
  1316. Saves by default in the file defined by the variable
  1317. `bookmark-default-file'.  With a prefix arg, save it in file FILE
  1318. \(second argument).
  1319.  
  1320. If you are calling this from Lisp, the two arguments are PREFIX-ARG
  1321. and FILE, and if you just want it to write to the default file, then
  1322. pass no arguments.  Or pass in nil and FILE, and it will save in FILE
  1323. instead.  If you pass in one argument, and it is non-nil, then the
  1324. user will be interactively queried for a file to save in.
  1325.  
  1326. When you want to load in the bookmarks from a file, use
  1327. `bookmark-load', \\[bookmark-load].  That function will prompt you
  1328. for a file, defaulting to the file defined by variable
  1329. `bookmark-default-file'." t nil)
  1330.  
  1331. (autoload (quote bookmark-load) "bookmark" "\
  1332. Load bookmarks from FILE (which must be in bookmark format).
  1333. Appends loaded bookmarks to the front of the list of bookmarks.  If
  1334. optional second argument REVERT is non-nil, existing bookmarks are
  1335. destroyed.  Optional third arg NO-MSG means don't display any messages
  1336. while loading.
  1337.  
  1338. If you load a file that doesn't contain a proper bookmark alist, you
  1339. will corrupt Emacs's bookmark list.  Generally, you should only load
  1340. in files that were created with the bookmark functions in the first
  1341. place.  Your own personal bookmark file, `~/.emacs.bmk', is
  1342. maintained automatically by Emacs; you shouldn't need to load it
  1343. explicitly." t nil)
  1344.  
  1345. (autoload (quote bookmark-bmenu-list) "bookmark" "\
  1346. Display a list of existing bookmarks.
  1347. The list is displayed in a buffer named `*Bookmark List*'.
  1348. The leftmost column displays a D if the bookmark is flagged for
  1349. deletion, or > if it is flagged for displaying." t nil)
  1350.  
  1351. (defalias (quote list-bookmarks) (quote bookmark-bmenu-list))
  1352.  
  1353. (defalias (quote edit-bookmarks) (quote bookmark-bmenu-list))
  1354.  
  1355. (autoload (quote bookmark-menu-insert) "bookmark" "\
  1356. Insert the text of the file pointed to by bookmark BOOKMARK.  
  1357. You may have a problem using this function if the value of variable
  1358. `bookmark-alist' is nil.  If that happens, you need to load in some
  1359. bookmarks.  See help on function `bookmark-load' for more about
  1360. this.
  1361.  
  1362. Warning: this function only takes an EVENT as argument.  Use the
  1363. corresponding bookmark function from Lisp (the one without the
  1364. \"-menu-\" in its name)." t nil)
  1365.  
  1366. (autoload (quote bookmark-menu-jump) "bookmark" "\
  1367. Jump to bookmark BOOKMARK (a point in some file).  
  1368. You may have a problem using this function if the value of variable
  1369. `bookmark-alist' is nil.  If that happens, you need to load in some
  1370. bookmarks.  See help on function `bookmark-load' for more about
  1371. this.
  1372.  
  1373. Warning: this function only takes an EVENT as argument.  Use the
  1374. corresponding bookmark function from Lisp (the one without the
  1375. \"-menu-\" in its name)." t nil)
  1376.  
  1377. (autoload (quote bookmark-menu-locate) "bookmark" "\
  1378. Insert the name of the file associated with BOOKMARK. 
  1379. \(This is not the same as the contents of that file).
  1380.  
  1381. Warning: this function only takes an EVENT as argument.  Use the
  1382. corresponding bookmark function from Lisp (the one without the
  1383. \"-menu-\" in its name)." t nil)
  1384.  
  1385. (autoload (quote bookmark-menu-rename) "bookmark" "\
  1386. Change the name of OLD-BOOKMARK to NEWNAME.  
  1387. If called from keyboard, prompts for OLD-BOOKMARK and NEWNAME.
  1388. If called from menubar, OLD-BOOKMARK is selected from a menu, and
  1389. prompts for NEWNAME. 
  1390. If called from Lisp, prompts for NEWNAME if only OLD-BOOKMARK was
  1391. passed as an argument.  If called with two strings, then no prompting
  1392. is done.  You must pass at least OLD-BOOKMARK when calling from Lisp.
  1393.  
  1394. While you are entering the new name, consecutive C-w's insert
  1395. consecutive words from the text of the buffer into the new bookmark
  1396. name.
  1397.  
  1398. Warning: this function only takes an EVENT as argument.  Use the
  1399. corresponding bookmark function from Lisp (the one without the
  1400. \"-menu-\" in its name)." t nil)
  1401.  
  1402. (autoload (quote bookmark-menu-delete) "bookmark" "\
  1403. Delete the bookmark named NAME from the bookmark list.  
  1404. Removes only the first instance of a bookmark with that name.  If
  1405. there are one or more other bookmarks with the same name, they will
  1406. not be deleted.  Defaults to the \"current\" bookmark (that is, the
  1407. one most recently used in this file, if any).
  1408.  
  1409. Warning: this function only takes an EVENT as argument.  Use the
  1410. corresponding bookmark function from Lisp (the one without the
  1411. \"-menu-\" in its name)." t nil)
  1412.  
  1413. (defvar menu-bar-bookmark-map (make-sparse-keymap "Bookmark functions"))
  1414.  
  1415. (defalias (quote menu-bar-bookmark-map) (symbol-value (quote menu-bar-bookmark-map)))
  1416.  
  1417. (define-key menu-bar-bookmark-map [load] (quote ("Load a Bookmark File..." . bookmark-load)))
  1418.  
  1419. (define-key menu-bar-bookmark-map [write] (quote ("Save Bookmarks As..." . bookmark-write)))
  1420.  
  1421. (define-key menu-bar-bookmark-map [save] (quote ("Save Bookmarks" . bookmark-save)))
  1422.  
  1423. (define-key menu-bar-bookmark-map [edit] (quote ("Edit Bookmark List" . bookmark-bmenu-list)))
  1424.  
  1425. (define-key menu-bar-bookmark-map [delete] (quote ("Delete Bookmark" . bookmark-menu-delete)))
  1426.  
  1427. (define-key menu-bar-bookmark-map [rename] (quote ("Rename Bookmark" . bookmark-menu-rename)))
  1428.  
  1429. (define-key menu-bar-bookmark-map [locate] (quote ("Insert Location" . bookmark-menu-locate)))
  1430.  
  1431. (define-key menu-bar-bookmark-map [insert] (quote ("Insert Contents" . bookmark-menu-insert)))
  1432.  
  1433. (define-key menu-bar-bookmark-map [set] (quote ("Set Bookmark" . bookmark-set)))
  1434.  
  1435. (define-key menu-bar-bookmark-map [jump] (quote ("Jump to Bookmark" . bookmark-menu-jump)))
  1436.  
  1437. ;;;***
  1438.  
  1439. ;;;### (autoloads (browse-url-of-dired-file browse-url-of-buffer browse-url-of-file browse-url-at-mouse browse-url-at-point) "browse-url" "browse-url.el" (12786 33098))
  1440. ;;; Generated autoloads from browse-url.el
  1441.  
  1442. (autoload (quote browse-url-at-point) "browse-url" "\
  1443. Ask a WWW browser to load the URL at or before point.
  1444. The URL is loaded according to the value of `browse-url-browser-function'." t nil)
  1445.  
  1446. (autoload (quote browse-url-at-mouse) "browse-url" "\
  1447. Ask a WWW browser to load a URL clicked with the mouse.
  1448. The URL is the one around or before the position of the mouse click
  1449. but point is not changed.  The URL is loaded according to the value of
  1450. `browse-url-browser-function'." t nil)
  1451.  
  1452. (autoload (quote browse-url-of-file) "browse-url" "\
  1453. Ask a WWW browser to display FILE.
  1454. Display the current buffer's file if FILE is nil or if called
  1455. interactively.  Turn the filename into a URL by performing
  1456. replacements given in variable `browse-url-filename-alist'.  Pass the
  1457. URL to a browser using variable `browse-url-browser-function' then run
  1458. `browse-url-of-file-hook'." t nil)
  1459.  
  1460. (autoload (quote browse-url-of-buffer) "browse-url" "\
  1461. Ask a WWW browser to display BUFFER.
  1462. Display the current buffer if BUFFER is nil." t nil)
  1463.  
  1464. (autoload (quote browse-url-of-dired-file) "browse-url" "\
  1465. In Dired, ask a WWW browser to display the file named on this line." t nil)
  1466.  
  1467. ;;;***
  1468.  
  1469. ;;;### (autoloads (batch-byte-recompile-directory batch-byte-compile display-call-tree byte-compile compile-defun byte-compile-file byte-recompile-directory byte-force-recompile) "bytecomp" "bytecomp.el" (12728 26482))
  1470. ;;; Generated autoloads from bytecomp.el
  1471.  
  1472. (autoload (quote byte-force-recompile) "bytecomp" "\
  1473. Recompile every `.el' file in DIRECTORY that already has a `.elc' file.
  1474. Files in subdirectories of DIRECTORY are processed also." t nil)
  1475.  
  1476. (autoload (quote byte-recompile-directory) "bytecomp" "\
  1477. Recompile every `.el' file in DIRECTORY that needs recompilation.
  1478. This is if a `.elc' file exists but is older than the `.el' file.
  1479. Files in subdirectories of DIRECTORY are processed also.
  1480.  
  1481. If the `.elc' file does not exist, normally the `.el' file is *not* compiled.
  1482. But a prefix argument (optional second arg) means ask user,
  1483. for each such `.el' file, whether to compile it.  Prefix argument 0 means
  1484. don't ask and compile the file anyway.
  1485.  
  1486. A nonzero prefix argument also means ask about each subdirectory.
  1487.  
  1488. If the third argument FORCE is non-nil,
  1489. recompile every `.el' file that already has a `.elc' file." t nil)
  1490.  
  1491. (autoload (quote byte-compile-file) "bytecomp" "\
  1492. Compile a file of Lisp code named FILENAME into a file of byte code.
  1493. The output file's name is made by appending `c' to the end of FILENAME.
  1494. With prefix arg (noninteractively: 2nd arg), load the file after compiling." t nil)
  1495.  
  1496. (autoload (quote compile-defun) "bytecomp" "\
  1497. Compile and evaluate the current top-level form.
  1498. Print the result in the minibuffer.
  1499. With argument, insert value in current buffer after the form." t nil)
  1500.  
  1501. (autoload (quote byte-compile) "bytecomp" "\
  1502. If FORM is a symbol, byte-compile its function definition.
  1503. If FORM is a lambda or a macro, byte-compile it as a function." nil nil)
  1504.  
  1505. (autoload (quote display-call-tree) "bytecomp" "\
  1506. Display a call graph of a specified file.
  1507. This lists which functions have been called, what functions called
  1508. them, and what functions they call.  The list includes all functions
  1509. whose definitions have been compiled in this Emacs session, as well as
  1510. all functions called by those functions.
  1511.  
  1512. The call graph does not include macros, inline functions, or
  1513. primitives that the byte-code interpreter knows about directly (eq,
  1514. cons, etc.).
  1515.  
  1516. The call tree also lists those functions which are not known to be called
  1517. \(that is, to which no calls have been compiled), and which cannot be
  1518. invoked interactively." t nil)
  1519.  
  1520. (autoload (quote batch-byte-compile) "bytecomp" "\
  1521. Run `byte-compile-file' on the files remaining on the command line.
  1522. Use this from the command line, with `-batch';
  1523. it won't work in an interactive Emacs.
  1524. Each file is processed even if an error occurred previously.
  1525. For example, invoke \"emacs -batch -f batch-byte-compile $emacs/ ~/*.el\"" nil nil)
  1526.  
  1527. (autoload (quote batch-byte-recompile-directory) "bytecomp" "\
  1528. Runs `byte-recompile-directory' on the dirs remaining on the command line.
  1529. Must be used only with `-batch', and kills Emacs on completion.
  1530. For example, invoke `emacs -batch -f batch-byte-recompile-directory .'." nil nil)
  1531.  
  1532. ;;;***
  1533.  
  1534. ;;;### (autoloads nil "cal-dst" "cal-dst.el" (12536 45574))
  1535. ;;; Generated autoloads from cal-dst.el
  1536.  
  1537. (put (quote calendar-daylight-savings-starts) (quote risky-local-variable) t)
  1538.  
  1539. (put (quote calendar-daylight-savings-ends) (quote risky-local-variable) t)
  1540.  
  1541. ;;;***
  1542.  
  1543. ;;;### (autoloads (list-yahrzeit-dates) "cal-hebrew" "cal-hebrew.el" (12536 45574))
  1544. ;;; Generated autoloads from cal-hebrew.el
  1545.  
  1546. (autoload (quote list-yahrzeit-dates) "cal-hebrew" "\
  1547. List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR.
  1548. When called interactively from the calendar window, the date of death is taken
  1549. from the cursor position." t nil)
  1550.  
  1551. ;;;***
  1552.  
  1553. ;;;### (autoloads (calendar) "calendar" "calendar.el" (12722 29358))
  1554. ;;; Generated autoloads from calendar.el
  1555.  
  1556. (defvar calendar-week-start-day 0 "\
  1557. *The day of the week on which a week in the calendar begins.
  1558. 0 means Sunday (default), 1 means Monday, and so on.")
  1559.  
  1560. (defvar calendar-offset 0 "\
  1561. *The offset of the principal month from the center of the calendar window.
  1562. 0 means the principal month is in the center (default), -1 means on the left,
  1563. +1 means on the right.  Larger (or smaller) values push the principal month off
  1564. the screen.")
  1565.  
  1566. (defvar view-diary-entries-initially nil "\
  1567. *Non-nil means display current date's diary entries on entry.
  1568. The diary is displayed in another window when the calendar is first displayed,
  1569. if the current date is visible.  The number of days of diary entries displayed
  1570. is governed by the variable `number-of-diary-entries'.")
  1571.  
  1572. (defvar number-of-diary-entries 1 "\
  1573. *Specifies how many days of diary entries are to be displayed initially.
  1574. This variable affects the diary display when the command M-x diary is used,
  1575. or if the value of the variable `view-diary-entries-initially' is t.  For
  1576. example, if the default value 1 is used, then only the current day's diary
  1577. entries will be displayed.  If the value 2 is used, then both the current
  1578. day's and the next day's entries will be displayed.
  1579.  
  1580. The value can also be a vector such as [0 2 2 2 2 4 1]; this value
  1581. says to display no diary entries on Sunday, the display the entries
  1582. for the current date and the day after on Monday through Thursday,
  1583. display Friday through Monday's entries on Friday, and display only
  1584. Saturday's entries on Saturday.
  1585.  
  1586. This variable does not affect the diary display with the `d' command
  1587. from the calendar; in that case, the prefix argument controls the
  1588. number of days of diary entries displayed.")
  1589.  
  1590. (defvar mark-diary-entries-in-calendar nil "\
  1591. *Non-nil means mark dates with diary entries, in the calendar window.
  1592. The marking symbol is specified by the variable `diary-entry-marker'.")
  1593.  
  1594. (defvar view-calendar-holidays-initially nil "\
  1595. *Non-nil means display holidays for current three month period on entry.
  1596. The holidays are displayed in another window when the calendar is first
  1597. displayed.")
  1598.  
  1599. (defvar mark-holidays-in-calendar nil "\
  1600. *Non-nil means mark dates of holidays in the calendar window.
  1601. The marking symbol is specified by the variable `calendar-holiday-marker'.")
  1602.  
  1603. (defvar all-hebrew-calendar-holidays nil "\
  1604. *If nil, show only major holidays from the Hebrew calendar.
  1605. This means only those Jewish holidays that appear on secular calendars.
  1606.  
  1607. If t, show all the holidays that would appear in a complete Hebrew calendar.")
  1608.  
  1609. (defvar all-christian-calendar-holidays nil "\
  1610. *If nil, show only major holidays from the Christian calendar.
  1611. This means only those Christian holidays that appear on secular calendars.
  1612.  
  1613. If t, show all the holidays that would appear in a complete Christian
  1614. calendar.")
  1615.  
  1616. (defvar all-islamic-calendar-holidays nil "\
  1617. *If nil, show only major holidays from the Islamic calendar.
  1618. This means only those Islamic holidays that appear on secular calendars.
  1619.  
  1620. If t, show all the holidays that would appear in a complete Islamic
  1621. calendar.")
  1622.  
  1623. (defvar calendar-load-hook nil "\
  1624. *List of functions to be called after the calendar is first loaded.
  1625. This is the place to add key bindings to `calendar-mode-map'.")
  1626.  
  1627. (defvar initial-calendar-window-hook nil "\
  1628. *List of functions to be called when the calendar window is first opened.
  1629. The functions invoked are called after the calendar window is opened, but
  1630. once opened is never called again.  Leaving the calendar with the `q' command
  1631. and reentering it will cause these functions to be called again.")
  1632.  
  1633. (defvar today-visible-calendar-hook nil "\
  1634. *List of functions called whenever the current date is visible.
  1635. This can be used, for example, to replace today's date with asterisks; a
  1636. function `calendar-star-date' is included for this purpose:
  1637.     (setq today-visible-calendar-hook 'calendar-star-date)
  1638. It can also be used to mark the current date with `calendar-today-marker';
  1639. a function is also provided for this:
  1640.     (setq today-visible-calendar-hook 'calendar-mark-today)
  1641.  
  1642. The corresponding variable `today-invisible-calendar-hook' is the list of
  1643. functions called when the calendar function was called when the current
  1644. date is not visible in the window.
  1645.  
  1646. Other than the use of the provided functions, the changing of any
  1647. characters in the calendar buffer by the hooks may cause the failure of the
  1648. functions that move by days and weeks.")
  1649.  
  1650. (defvar today-invisible-calendar-hook nil "\
  1651. *List of functions called whenever the current date is not visible.
  1652.  
  1653. The corresponding variable `today-visible-calendar-hook' is the list of
  1654. functions called when the calendar function was called when the current
  1655. date is visible in the window.
  1656.  
  1657. Other than the use of the provided functions, the changing of any
  1658. characters in the calendar buffer by the hooks may cause the failure of the
  1659. functions that move by days and weeks.")
  1660.  
  1661. (defvar diary-file "~/diary" "\
  1662. *Name of the file in which one's personal diary of dates is kept.
  1663.  
  1664. The file's entries are lines in any of the forms
  1665.  
  1666.             MONTH/DAY
  1667.             MONTH/DAY/YEAR
  1668.             MONTHNAME DAY
  1669.             MONTHNAME DAY, YEAR
  1670.             DAYNAME
  1671.  
  1672. at the beginning of the line; the remainder of the line is the diary entry
  1673. string for that date.  MONTH and DAY are one or two digit numbers, YEAR is
  1674. a number and may be written in full or abbreviated to the final two digits.
  1675. If the date does not contain a year, it is generic and applies to any year.
  1676. DAYNAME entries apply to any date on which is on that day of the week.
  1677. MONTHNAME and DAYNAME can be spelled in full, abbreviated to three
  1678. characters (with or without a period), capitalized or not.  Any of DAY,
  1679. MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year,
  1680. respectively.
  1681.  
  1682. The European style (in which the day precedes the month) can be used
  1683. instead, if you execute `european-calendar' when in the calendar, or set
  1684. `european-calendar-style' to t in your .emacs file.  The European forms are
  1685.  
  1686.             DAY/MONTH
  1687.             DAY/MONTH/YEAR
  1688.             DAY MONTHNAME
  1689.             DAY MONTHNAME YEAR
  1690.             DAYNAME
  1691.  
  1692. To revert to the default American style from the European style, execute
  1693. `american-calendar' in the calendar.
  1694.  
  1695. A diary entry can be preceded by the character
  1696. `diary-nonmarking-symbol' (ordinarily `&') to make that entry
  1697. nonmarking--that is, it will not be marked on dates in the calendar
  1698. window but will appear in a diary window.
  1699.  
  1700. Multiline diary entries are made by indenting lines after the first with
  1701. either a TAB or one or more spaces.
  1702.  
  1703. Lines not in one the above formats are ignored.  Here are some sample diary
  1704. entries (in the default American style):
  1705.  
  1706.      12/22/1988 Twentieth wedding anniversary!!
  1707.      &1/1. Happy New Year!
  1708.      10/22 Ruth's birthday.
  1709.      21: Payday
  1710.      Tuesday--weekly meeting with grad students at 10am
  1711.               Supowit, Shen, Bitner, and Kapoor to attend.
  1712.      1/13/89 Friday the thirteenth!!
  1713.      &thu 4pm squash game with Lloyd.
  1714.      mar 16 Dad's birthday
  1715.      April 15, 1989 Income tax due.
  1716.      &* 15 time cards due.
  1717.  
  1718. If the first line of a diary entry consists only of the date or day name with
  1719. no trailing blanks or punctuation, then that line is not displayed in the
  1720. diary window; only the continuation lines is shown.  For example, the
  1721. single diary entry
  1722.  
  1723.      02/11/1989
  1724.       Bill Blattner visits Princeton today
  1725.       2pm Cognitive Studies Committee meeting
  1726.       2:30-5:30 Lizzie at Lawrenceville for `Group Initiative'
  1727.       4:00pm Jamie Tappenden
  1728.       7:30pm Dinner at George and Ed's for Alan Ryan
  1729.       7:30-10:00pm dance at Stewart Country Day School
  1730.  
  1731. will appear in the diary window without the date line at the beginning.  This
  1732. facility allows the diary window to look neater, but can cause confusion if
  1733. used with more than one day's entries displayed.
  1734.  
  1735. Diary entries can be based on Lisp sexps.  For example, the diary entry
  1736.  
  1737.       %%(diary-block 11 1 1990 11 10 1990) Vacation
  1738.  
  1739. causes the diary entry \"Vacation\" to appear from November 1 through November
  1740. 10, 1990.  Other functions available are `diary-float', `diary-anniversary',
  1741. `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date',
  1742. `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date',
  1743. `diary-chinese-date', `diary-coptic-date', `diary-ethiopic-date',
  1744. `diary-persian-date', `diary-yahrzeit', `diary-sunrise-sunset',
  1745. `diary-phases-of-moon', `diary-parasha', `diary-omer', `diary-rosh-hodesh',
  1746. and `diary-sabbath-candles'.  See the documentation for the function
  1747. `list-sexp-diary-entries' for more details.
  1748.  
  1749. Diary entries based on the Hebrew and/or the Islamic calendar are also
  1750. possible, but because these are somewhat slow, they are ignored
  1751. unless you set the `nongregorian-diary-listing-hook' and the
  1752. `nongregorian-diary-marking-hook' appropriately.  See the documentation
  1753. for these functions for details.
  1754.  
  1755. Diary files can contain directives to include the contents of other files; for
  1756. details, see the documentation for the variable `list-diary-entries-hook'.")
  1757.  
  1758. (defvar diary-nonmarking-symbol "&" "\
  1759. *Symbol indicating that a diary entry is not to be marked in the calendar.")
  1760.  
  1761. (defvar hebrew-diary-entry-symbol "H" "\
  1762. *Symbol indicating a diary entry according to the Hebrew calendar.")
  1763.  
  1764. (defvar islamic-diary-entry-symbol "I" "\
  1765. *Symbol indicating a diary entry according to the Islamic calendar.")
  1766.  
  1767. (defvar diary-include-string "#include" "\
  1768. *The string indicating inclusion of another file of diary entries.
  1769. See the documentation for the function `include-other-diary-files'.")
  1770.  
  1771. (defvar sexp-diary-entry-symbol "%%" "\
  1772. *The string used to indicate a sexp diary entry in diary-file.
  1773. See the documentation for the function `list-sexp-diary-entries'.")
  1774.  
  1775. (defvar abbreviated-calendar-year t "\
  1776. *Interpret a two-digit year DD in a diary entry as either 19DD or 20DD.
  1777. For the Gregorian calendar; similarly for the Hebrew and Islamic calendars.
  1778. If this variable is nil, years must be written in full.")
  1779.  
  1780. (defvar european-calendar-style nil "\
  1781. *Use the European style of dates in the diary and in any displays.
  1782. If this variable is t, a date 1/2/1990 would be interpreted as February 1,
  1783. 1990.  The accepted European date styles are
  1784.  
  1785.             DAY/MONTH
  1786.             DAY/MONTH/YEAR
  1787.             DAY MONTHNAME
  1788.             DAY MONTHNAME YEAR
  1789.             DAYNAME
  1790.  
  1791. Names can be capitalized or not, written in full, or abbreviated to three
  1792. characters with or without a period.")
  1793.  
  1794. (defvar american-date-diary-pattern (quote ((month "/" day "[^/0-9]") (month "/" day "/" year "[^0-9]") (monthname " *" day "[^,0-9]") (monthname " *" day ", *" year "[^0-9]") (dayname "\\W"))) "\
  1795. *List of pseudo-patterns describing the American patterns of date used.
  1796. See the documentation of `diary-date-forms' for an explanation.")
  1797.  
  1798. (defvar european-date-diary-pattern (quote ((day "/" month "[^/0-9]") (day "/" month "/" year "[^0-9]") (backup day " *" monthname "\\W+\\<[^*0-9]") (day " *" monthname " *" year "[^0-9]") (dayname "\\W"))) "\
  1799. *List of pseudo-patterns describing the European patterns of date used.
  1800. See the documentation of `diary-date-forms' for an explanation.")
  1801.  
  1802. (defvar european-calendar-display-form (quote ((if dayname (concat dayname ", ")) day " " monthname " " year)) "\
  1803. *Pseudo-pattern governing the way a date appears in the European style.
  1804. See the documentation of calendar-date-display-form for an explanation.")
  1805.  
  1806. (defvar american-calendar-display-form (quote ((if dayname (concat dayname ", ")) monthname " " day ", " year)) "\
  1807. *Pseudo-pattern governing the way a date appears in the American style.
  1808. See the documentation of `calendar-date-display-form' for an explanation.")
  1809.  
  1810. (defvar print-diary-entries-hook (quote lpr-buffer) "\
  1811. *List of functions called after a temporary diary buffer is prepared.
  1812. The buffer shows only the diary entries currently visible in the diary
  1813. buffer.  The default just does the printing.  Other uses might include, for
  1814. example, rearranging the lines into order by day and time, saving the buffer
  1815. instead of deleting it, or changing the function used to do the printing.")
  1816.  
  1817. (defvar list-diary-entries-hook nil "\
  1818. *List of functions called after diary file is culled for relevant entries.
  1819. It is to be used for diary entries that are not found in the diary file.
  1820.  
  1821. A function `include-other-diary-files' is provided for use as the value of
  1822. this hook.  This function enables you to use shared diary files together
  1823. with your own.  The files included are specified in the diary file by lines
  1824. of the form
  1825.  
  1826.         #include \"filename\"
  1827.  
  1828. This is recursive; that is, #include directives in files thus included are
  1829. obeyed.  You can change the \"#include\" to some other string by changing
  1830. the variable `diary-include-string'.  When you use `include-other-diary-files'
  1831. as part of the list-diary-entries-hook, you will probably also want to use the
  1832. function `mark-included-diary-files' as part of `mark-diary-entries-hook'.
  1833.  
  1834. For example, you could use
  1835.  
  1836.      (setq list-diary-entries-hook
  1837.        '(include-other-diary-files sort-diary-entries))
  1838.      (setq diary-display-hook 'fancy-diary-display)
  1839.  
  1840. in your `.emacs' file to cause the fancy diary buffer to be displayed with
  1841. diary entries from various included files, each day's entries sorted into
  1842. lexicographic order.")
  1843.  
  1844. (defvar diary-hook nil "\
  1845. *List of functions called after the display of the diary.
  1846. Can be used for appointment notification.")
  1847.  
  1848. (defvar diary-display-hook nil "\
  1849. *List of functions that handle the display of the diary.
  1850. If nil (the default), `simple-diary-display' is used.  Use `ignore' for no
  1851. diary display.
  1852.  
  1853. Ordinarily, this just displays the diary buffer (with holidays indicated in
  1854. the mode line), if there are any relevant entries.  At the time these
  1855. functions are called, the variable `diary-entries-list' is a list, in order
  1856. by date, of all relevant diary entries in the form of ((MONTH DAY YEAR)
  1857. STRING), where string is the diary entry for the given date.  This can be
  1858. used, for example, a different buffer for display (perhaps combined with
  1859. holidays), or produce hard copy output.
  1860.  
  1861. A function `fancy-diary-display' is provided as an alternative
  1862. choice for this hook; this function prepares a special noneditable diary
  1863. buffer with the relevant diary entries that has neat day-by-day arrangement
  1864. with headings.  The fancy diary buffer will show the holidays unless the
  1865. variable `holidays-in-diary-buffer' is set to nil.  Ordinarily, the fancy
  1866. diary buffer will not show days for which there are no diary entries, even
  1867. if that day is a holiday; if you want such days to be shown in the fancy
  1868. diary buffer, set the variable `diary-list-include-blanks' to t.")
  1869.  
  1870. (defvar nongregorian-diary-listing-hook nil "\
  1871. *List of functions called for listing diary file and included files.
  1872. As the files are processed for diary entries, these functions are used to cull
  1873. relevant entries.  You can use either or both of `list-hebrew-diary-entries'
  1874. and `list-islamic-diary-entries'.  The documentation for these functions
  1875. describes the style of such diary entries.")
  1876.  
  1877. (defvar mark-diary-entries-hook nil "\
  1878. *List of functions called after marking diary entries in the calendar.
  1879.  
  1880. A function `mark-included-diary-files' is also provided for use as the
  1881. mark-diary-entries-hook; it enables you to use shared diary files together
  1882. with your own.  The files included are specified in the diary file by lines
  1883. of the form
  1884.         #include \"filename\"
  1885. This is recursive; that is, #include directives in files thus included are
  1886. obeyed.  You can change the \"#include\" to some other string by changing the
  1887. variable `diary-include-string'.  When you use `mark-included-diary-files' as
  1888. part of the mark-diary-entries-hook, you will probably also want to use the
  1889. function `include-other-diary-files' as part of `list-diary-entries-hook'.")
  1890.  
  1891. (defvar nongregorian-diary-marking-hook nil "\
  1892. *List of functions called for marking diary file and included files.
  1893. As the files are processed for diary entries, these functions are used to cull
  1894. relevant entries.  You can use either or both of `mark-hebrew-diary-entries'
  1895. and `mark-islamic-diary-entries'.  The documentation for these functions
  1896. describes the style of such diary entries.")
  1897.  
  1898. (defvar diary-list-include-blanks nil "\
  1899. *If nil, do not include days with no diary entry in the list of diary entries.
  1900. Such days will then not be shown in the the fancy diary buffer, even if they
  1901. are holidays.")
  1902.  
  1903. (defvar holidays-in-diary-buffer t "\
  1904. *Non-nil means include holidays in the diary display.
  1905. The holidays appear in the mode line of the diary buffer, or in the
  1906. fancy diary buffer next to the date.  This slows down the diary functions
  1907. somewhat; setting it to nil makes the diary display faster.")
  1908.  
  1909. (put (quote general-holidays) (quote risky-local-variable) t)
  1910.  
  1911. (defvar general-holidays (quote ((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Ground Hog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\
  1912. *General holidays.  Default value is for the United States.
  1913. See the documentation for `calendar-holidays' for details.")
  1914.  
  1915. (put (quote oriental-holidays) (quote risky-local-variable) t)
  1916.  
  1917. (defvar oriental-holidays (quote ((if (fboundp (quote atan)) (holiday-chinese-new-year)))) "\
  1918. *Oriental holidays.
  1919. See the documentation for `calendar-holidays' for details.")
  1920.  
  1921. (put (quote local-holidays) (quote risky-local-variable) t)
  1922.  
  1923. (defvar local-holidays nil "\
  1924. *Local holidays.
  1925. See the documentation for `calendar-holidays' for details.")
  1926.  
  1927. (put (quote other-holidays) (quote risky-local-variable) t)
  1928.  
  1929. (defvar other-holidays nil "\
  1930. *User defined holidays.
  1931. See the documentation for `calendar-holidays' for details.")
  1932.  
  1933. (put (quote hebrew-holidays-1) (quote risky-local-variable) t)
  1934.  
  1935. (defvar hebrew-holidays-1 (quote ((holiday-rosh-hashanah-etc) (if all-hebrew-calendar-holidays (holiday-julian 11 (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (if (zerop (% (1+ year) 4)) 22 21))) "\"Tal Umatar\" (evening)")))))
  1936.  
  1937. (put (quote hebrew-holidays-2) (quote risky-local-variable) t)
  1938.  
  1939. (defvar hebrew-holidays-2 (quote ((if all-hebrew-calendar-holidays (holiday-hanukkah) (holiday-hebrew 9 25 "Hanukkah")) (if all-hebrew-calendar-holidays (holiday-hebrew 10 (let ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list displayed-month 28 displayed-year)))))) (if (= (% (calendar-absolute-from-hebrew (list 10 10 h-year)) 7) 6) 11 10)) "Tzom Teveth")) (if all-hebrew-calendar-holidays (holiday-hebrew 11 15 "Tu B'Shevat")))))
  1940.  
  1941. (put (quote hebrew-holidays-3) (quote risky-local-variable) t)
  1942.  
  1943. (defvar hebrew-holidays-3 (quote ((if all-hebrew-calendar-holidays (holiday-hebrew 11 (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (let* ((h-year (extract-calendar-year (calendar-hebrew-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))) (s-s (calendar-hebrew-from-absolute (if (= (% (calendar-absolute-from-hebrew (list 7 1 h-year)) 7) 6) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 17 h-year))) (calendar-dayname-on-or-before 6 (calendar-absolute-from-hebrew (list 11 16 h-year)))))) (day (extract-calendar-day s-s))) day)) "Shabbat Shirah")))))
  1944.  
  1945. (put (quote hebrew-holidays-4) (quote risky-local-variable) t)
  1946.  
  1947. (defvar hebrew-holidays-4 (quote ((holiday-passover-etc) (if (and all-hebrew-calendar-holidays (let* ((m displayed-month) (y displayed-year) (year)) (increment-calendar-month m y -1) (let ((year (extract-calendar-year (calendar-julian-from-absolute (calendar-absolute-from-gregorian (list m 1 y)))))) (= 21 (% year 28))))) (holiday-julian 3 26 "Kiddush HaHamah")) (if all-hebrew-calendar-holidays (holiday-tisha-b-av-etc)))))
  1948.  
  1949. (put (quote hebrew-holidays) (quote risky-local-variable) t)
  1950.  
  1951. (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\
  1952. *Jewish holidays.
  1953. See the documentation for `calendar-holidays' for details.")
  1954.  
  1955. (put (quote christian-holidays) (quote risky-local-variable) t)
  1956.  
  1957. (defvar christian-holidays (quote ((if all-christian-calendar-holidays (holiday-fixed 1 6 "Epiphany")) (holiday-easter-etc) (if all-christian-calendar-holidays (holiday-greek-orthodox-easter)) (if all-christian-calendar-holidays (holiday-fixed 8 15 "Assumption")) (if all-christian-calendar-holidays (holiday-advent)) (holiday-fixed 12 25 "Christmas") (if all-christian-calendar-holidays (holiday-julian 12 25 "Eastern Orthodox Christmas")))) "\
  1958. *Christian holidays.
  1959. See the documentation for `calendar-holidays' for details.")
  1960.  
  1961. (put (quote islamic-holidays) (quote risky-local-variable) t)
  1962.  
  1963. (defvar islamic-holidays (quote ((holiday-islamic 1 1 (format "Islamic New Year %d" (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (extract-calendar-year (calendar-islamic-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))))) (if all-islamic-calendar-holidays (holiday-islamic 1 10 "Ashura")) (if all-islamic-calendar-holidays (holiday-islamic 3 12 "Mulad-al-Nabi")) (if all-islamic-calendar-holidays (holiday-islamic 7 26 "Shab-e-Mi'raj")) (if all-islamic-calendar-holidays (holiday-islamic 8 15 "Shab-e-Bara't")) (holiday-islamic 9 1 "Ramadan Begins") (if all-islamic-calendar-holidays (holiday-islamic 9 27 "Shab-e Qadr")) (if all-islamic-calendar-holidays (holiday-islamic 10 1 "Id-al-Fitr")) (if all-islamic-calendar-holidays (holiday-islamic 12 10 "Id-al-Adha")))) "\
  1964. *Islamic holidays.
  1965. See the documentation for `calendar-holidays' for details.")
  1966.  
  1967. (put (quote solar-holidays) (quote risky-local-variable) t)
  1968.  
  1969. (defvar solar-holidays (quote ((if (fboundp (quote atan)) (solar-equinoxes-solstices)) (if (progn (require (quote cal-dst)) t) (funcall (quote holiday-sexp) calendar-daylight-savings-starts (quote (format "Daylight Savings Time Begins %s" (if (fboundp (quote atan)) (solar-time-string (/ calendar-daylight-savings-starts-time (float 60)) calendar-standard-time-zone-name) ""))))) (funcall (quote holiday-sexp) calendar-daylight-savings-ends (quote (format "Daylight Savings Time Ends %s" (if (fboundp (quote atan)) (solar-time-string (/ calendar-daylight-savings-ends-time (float 60)) calendar-daylight-time-zone-name) "")))))) "\
  1970. *Sun-related holidays.
  1971. See the documentation for `calendar-holidays' for details.")
  1972.  
  1973. (put (quote calendar-holidays) (quote risky-local-variable) t)
  1974.  
  1975. (defvar calendar-setup nil "\
  1976. The frame set up of the calendar.
  1977. The choices are `one-frame' (calendar and diary together in one separate,
  1978. dedicated frame) or `two-frames' (calendar and diary in separate, dedicated
  1979. frames); with any other value the current frame is used.")
  1980.  
  1981. (autoload (quote calendar) "calendar" "\
  1982. Choose between the one frame, two frame, or basic calendar displays.
  1983. The original function `calendar' has been renamed `calendar-basic-setup'." t nil)
  1984.  
  1985. ;;;***
  1986.  
  1987. ;;;### (autoloads (set-case-syntax set-case-syntax-pair set-case-syntax-delims copy-case-table describe-buffer-case-table) "case-table" "case-table.el" (12536 45574))
  1988. ;;; Generated autoloads from case-table.el
  1989.  
  1990. (autoload (quote describe-buffer-case-table) "case-table" "\
  1991. Describe the case table of the current buffer." t nil)
  1992.  
  1993. (autoload (quote copy-case-table) "case-table" nil nil nil)
  1994.  
  1995. (autoload (quote set-case-syntax-delims) "case-table" "\
  1996. Make characters L and R a matching pair of non-case-converting delimiters.
  1997. This sets the entries for L and R in TABLE, which is a string
  1998. that will be used as the downcase part of a case table.
  1999. It also modifies `standard-syntax-table' to
  2000. indicate left and right delimiters." nil nil)
  2001.  
  2002. (autoload (quote set-case-syntax-pair) "case-table" "\
  2003. Make characters UC and LC a pair of inter-case-converting letters.
  2004. This sets the entries for characters UC and LC in TABLE, which is a string
  2005. that will be used as the downcase part of a case table.
  2006. It also modifies `standard-syntax-table' to give them the syntax of
  2007. word constituents." nil nil)
  2008.  
  2009. (autoload (quote set-case-syntax) "case-table" "\
  2010. Make characters C case-invariant with syntax SYNTAX.
  2011. This sets the entries for character C in TABLE, which is a string
  2012. that will be used as the downcase part of a case table.
  2013. It also modifies `standard-syntax-table'.
  2014. SYNTAX should be \" \", \"w\", \".\" or \"_\"." nil nil)
  2015.  
  2016. ;;;***
  2017.  
  2018. ;;;### (autoloads (c-set-style java-mode objc-mode c++-mode c-mode) "cc-mode" "cc-mode.el" (12814 19012))
  2019. ;;; Generated autoloads from cc-mode.el
  2020.  
  2021. (autoload (quote c-mode) "cc-mode" "\
  2022. Major mode for editing K&R and ANSI C code.
  2023. To submit a problem report, enter `\\[c-submit-bug-report]' from a
  2024. c-mode buffer.  This automatically sets up a mail buffer with version
  2025. information already added.  You just need to add a description of the
  2026. problem, including a reproducible test case and send the message.
  2027.  
  2028. To see what version of cc-mode you are running, enter `\\[c-version]'.
  2029.  
  2030. The hook variable `c-mode-hook' is run with no args, if that value is
  2031. bound and has a non-nil value.  Also the hook `c-mode-common-hook' is
  2032. run first.
  2033.  
  2034. Key bindings:
  2035. \\{c-mode-map}" t nil)
  2036.  
  2037. (autoload (quote c++-mode) "cc-mode" "\
  2038. Major mode for editing C++ code.
  2039. To submit a problem report, enter `\\[c-submit-bug-report]' from a
  2040. c++-mode buffer.  This automatically sets up a mail buffer with
  2041. version information already added.  You just need to add a description
  2042. of the problem, including a reproducible test case, and send the
  2043. message.
  2044.  
  2045. To see what version of cc-mode you are running, enter `\\[c-version]'.
  2046.  
  2047. The hook variable `c++-mode-hook' is run with no args, if that
  2048. variable is bound and has a non-nil value.  Also the hook
  2049. `c-mode-common-hook' is run first.
  2050.  
  2051. Key bindings:
  2052. \\{c++-mode-map}" t nil)
  2053.  
  2054. (autoload (quote objc-mode) "cc-mode" "\
  2055. Major mode for editing Objective C code.
  2056. To submit a problem report, enter `\\[c-submit-bug-report]' from an
  2057. objc-mode buffer.  This automatically sets up a mail buffer with
  2058. version information already added.  You just need to add a description
  2059. of the problem, including a reproducible test case, and send the
  2060. message.
  2061.  
  2062. To see what version of cc-mode you are running, enter `\\[c-version]'.
  2063.  
  2064. The hook variable `objc-mode-hook' is run with no args, if that value
  2065. is bound and has a non-nil value.  Also the hook `c-mode-common-hook'
  2066. is run first.
  2067.  
  2068. Key bindings:
  2069. \\{objc-mode-map}" t nil)
  2070.  
  2071. (autoload (quote java-mode) "cc-mode" "\
  2072. Major mode for editing Java code.
  2073. To submit a problem report, enter `\\[c-submit-bug-report]' from an
  2074. java-mode buffer.  This automatically sets up a mail buffer with
  2075. version information already added.  You just need to add a description
  2076. of the problem, including a reproducible test case and send the
  2077. message.
  2078.  
  2079. To see what version of cc-mode you are running, enter `\\[c-version]'.
  2080.  
  2081. The hook variable `java-mode-hook' is run with no args, if that value
  2082. is bound and has a non-nil value.  Also the common hook
  2083. `c-mode-common-hook' is run first.
  2084.  
  2085. Key bindings:
  2086. \\{java-mode-map}" t nil)
  2087.  
  2088. (autoload (quote c-set-style) "cc-mode" "\
  2089. Set cc-mode variables to use one of several different indentation styles.
  2090. STYLENAME is a string representing the desired style from the list of
  2091. styles described in the variable `c-style-alist'.  See that variable
  2092. for details of setting up styles." t nil)
  2093.  (fset 'set-c-style           'c-set-style)
  2094.  
  2095. ;;;***
  2096.  
  2097. ;;;### (autoloads (command-history-mode list-command-history repeat-matching-complex-command) "chistory" "chistory.el" (12536 45574))
  2098. ;;; Generated autoloads from chistory.el
  2099.  
  2100. (autoload (quote repeat-matching-complex-command) "chistory" "\
  2101. Edit and re-evaluate complex command with name matching PATTERN.
  2102. Matching occurrences are displayed, most recent first, until you select
  2103. a form for evaluation.  If PATTERN is empty (or nil), every form in the
  2104. command history is offered.  The form is placed in the minibuffer for
  2105. editing and the result is evaluated." t nil)
  2106.  
  2107. (autoload (quote list-command-history) "chistory" "\
  2108. List history of commands typed to minibuffer.
  2109. The number of commands listed is controlled by `list-command-history-max'.
  2110. Calls value of `list-command-history-filter' (if non-nil) on each history
  2111. element to judge if that element should be excluded from the list.
  2112.  
  2113. The buffer is left in Command History mode." t nil)
  2114.  
  2115. (autoload (quote command-history-mode) "chistory" "\
  2116. Major mode for examining commands from `command-history'.
  2117. The number of commands listed is controlled by `list-command-history-max'.
  2118. The command history is filtered by `list-command-history-filter' if non-nil.
  2119. Use \\<command-history-map>\\[command-history-repeat] to repeat the command on the current line.
  2120.  
  2121. Otherwise much like Emacs-Lisp Mode except that there is no self-insertion
  2122. and digits provide prefix arguments.  Tab does not indent.
  2123. \\{command-history-map}
  2124. Calls the value of `command-history-hook' if that is non-nil.
  2125. The Command History listing is recomputed each time this mode is invoked." t nil)
  2126.  
  2127. ;;;***
  2128.  
  2129. ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "cl-indent.el" (12536 45574))
  2130. ;;; Generated autoloads from cl-indent.el
  2131.  
  2132. (autoload (quote common-lisp-indent-function) "cl-indent" nil nil nil)
  2133.  
  2134. ;;;***
  2135.  
  2136. ;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (12536 45574))
  2137. ;;; Generated autoloads from cmuscheme.el
  2138.  
  2139. (autoload (quote run-scheme) "cmuscheme" "\
  2140. Run an inferior Scheme process, input and output via buffer *scheme*.
  2141. If there is a process already running in `*scheme*', switch to that buffer.
  2142. With argument, allows you to edit the command line (default is value
  2143. of `scheme-program-name').  Runs the hooks `inferior-scheme-mode-hook'
  2144. \(after the `comint-mode-hook' is run).
  2145. \(Type \\[describe-mode] in the process buffer for a list of commands.)" t nil)
  2146.  (add-hook 'same-window-buffer-names "*scheme*")
  2147.  
  2148. ;;;***
  2149.  
  2150. ;;;### (autoloads (comint-run make-comint) "comint" "comint.el" (12801 12302))
  2151. ;;; Generated autoloads from comint.el
  2152.  
  2153. (autoload (quote make-comint) "comint" "\
  2154. Make a comint process NAME in a buffer, running PROGRAM.
  2155. The name of the buffer is made by surrounding NAME with `*'s.
  2156. PROGRAM should be either a string denoting an executable program to create
  2157. via `start-process', or a cons pair of the form (HOST . SERVICE) denoting a TCP
  2158. connection to be opened via `open-network-stream'.  If there is already a
  2159. running process in that buffer, it is not restarted.  Optional third arg
  2160. STARTFILE is the name of a file to send the contents of to the process.
  2161.  
  2162. If PROGRAM is a string, any more args are arguments to PROGRAM." nil nil)
  2163.  
  2164. (autoload (quote comint-run) "comint" "\
  2165. Run PROGRAM in a comint buffer and switch to it.
  2166. The buffer name is made by surrounding the file name of PROGRAM with `*'s.
  2167. The file name is used to make a symbol name, such as `comint-sh-hook', and any
  2168. hooks on this symbol are run in the buffer.
  2169. See `make-comint' and `comint-exec'." t nil)
  2170.  
  2171. ;;;***
  2172.  
  2173. ;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (12536 45574))
  2174. ;;; Generated autoloads from compare-w.el
  2175.  
  2176. (autoload (quote compare-windows) "compare-w" "\
  2177. Compare text in current window with text in next window.
  2178. Compares the text starting at point in each window,
  2179. moving over text in each one as far as they match.
  2180.  
  2181. This command pushes the mark in each window
  2182. at the prior location of point in that window.
  2183. If both windows display the same buffer,
  2184. the mark is pushed twice in that buffer:
  2185. first in the other window, then in the selected window.
  2186.  
  2187. A prefix arg means ignore changes in whitespace.
  2188. The variable `compare-windows-whitespace' controls how whitespace is skipped.
  2189. If `compare-ignore-case' is non-nil, changes in case are also ignored." t nil)
  2190.  
  2191. ;;;***
  2192.  
  2193. ;;;### (autoloads (next-error compilation-minor-mode compilation-mode grep compile) "compile" "compile.el" (12755 29072))
  2194. ;;; Generated autoloads from compile.el
  2195.  
  2196. (defvar compilation-mode-hook nil "\
  2197. *List of hook functions run by `compilation-mode' (see `run-hooks').")
  2198.  
  2199. (defvar compilation-window-height nil "\
  2200. *Number of lines in a compilation window.  If nil, use Emacs default.")
  2201.  
  2202. (defvar compilation-buffer-name-function nil "\
  2203. Function to compute the name of a compilation buffer.
  2204. The function receives one argument, the name of the major mode of the
  2205. compilation buffer.  It should return a string.
  2206. nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
  2207.  
  2208. (defvar compilation-finish-function nil "\
  2209. *Function to call when a compilation process finishes.
  2210. It is called with two arguments: the compilation buffer, and a string
  2211. describing how the process finished.")
  2212.  
  2213. (defvar compilation-search-path (quote (nil)) "\
  2214. *List of directories to search for source files named in error messages.
  2215. Elements should be directory names, not file names of directories.
  2216. nil as an element means to try the default directory.")
  2217.  
  2218. (autoload (quote compile) "compile" "\
  2219. Compile the program including the current buffer.  Default: run `make'.
  2220. Runs COMMAND, a shell command, in a separate process asynchronously
  2221. with output going to the buffer `*compilation*'.
  2222.  
  2223. You can then use the command \\[next-error] to find the next error message
  2224. and move to the source code that caused it.
  2225.  
  2226. Interactively, prompts for the command if `compilation-read-command' is
  2227. non-nil; otherwise uses `compile-command'.  With prefix arg, always prompts.
  2228.  
  2229. To run more than one compilation at once, start one and rename the
  2230. `*compilation*' buffer to some other name with \\[rename-buffer].
  2231. Then start the next one.
  2232.  
  2233. The name used for the buffer is actually whatever is returned by
  2234. the function in `compilation-buffer-name-function', so you can set that
  2235. to a function that generates a unique name." t nil)
  2236.  
  2237. (autoload (quote grep) "compile" "\
  2238. Run grep, with user-specified args, and collect output in a buffer.
  2239. While grep runs asynchronously, you can use the \\[next-error] command
  2240. to find the text that grep hits refer to.
  2241.  
  2242. This command uses a special history list for its arguments, so you can
  2243. easily repeat a grep command." t nil)
  2244.  
  2245. (autoload (quote compilation-mode) "compile" "\
  2246. Major mode for compilation log buffers.
  2247. \\<compilation-mode-map>To visit the source for a line-numbered error,
  2248. move point to the error message line and type \\[compile-goto-error].
  2249. To kill the compilation, type \\[kill-compilation].
  2250.  
  2251. Runs `compilation-mode-hook' with `run-hooks' (which see)." t nil)
  2252.  
  2253. (autoload (quote compilation-minor-mode) "compile" "\
  2254. Toggle compilation minor mode.
  2255. With arg, turn compilation mode on if and only if arg is positive.
  2256. See `compilation-mode'.
  2257. Turning the mode on runs the normal hook `compilation-minor-mode-hook'." t nil)
  2258.  
  2259. (autoload (quote next-error) "compile" "\
  2260. Visit next compilation error message and corresponding source code.
  2261. This operates on the output from the \\[compile] command.
  2262. If all preparsed error messages have been processed,
  2263. the error message buffer is checked for new ones.
  2264.  
  2265. A prefix arg specifies how many error messages to move;
  2266. negative means move back to previous error messages.
  2267. Just C-u as a prefix means reparse the error message buffer
  2268. and start at the first error.
  2269.  
  2270. \\[next-error] normally applies to the most recent compilation started,
  2271. but as long as you are in the middle of parsing errors from one compilation
  2272. output buffer, you stay with that compilation output buffer.
  2273.  
  2274. Use \\[next-error] in a compilation output buffer to switch to
  2275. processing errors from that compilation.
  2276.  
  2277. See variables `compilation-parse-errors-function' and
  2278. `compilation-error-regexp-alist' for customization ideas." t nil)
  2279.  (define-key ctl-x-map "`" 'next-error)
  2280.  
  2281. ;;;***
  2282.  
  2283. ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) "cookie1" "cookie1.el" (12550 52684))
  2284. ;;; Generated autoloads from cookie1.el
  2285.  
  2286. (autoload (quote cookie) "cookie1" "\
  2287. Return a random phrase from PHRASE-FILE.  When the phrase file
  2288. is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil)
  2289.  
  2290. (autoload (quote cookie-insert) "cookie1" "\
  2291. Insert random phrases from PHRASE-FILE; COUNT of them.  When the phrase file
  2292. is read in, display STARTMSG at beginning of load, ENDMSG at end." nil nil)
  2293.  
  2294. (autoload (quote cookie-snarf) "cookie1" "\
  2295. Reads in the PHRASE-FILE, returns it as a vector of strings.
  2296. Emit STARTMSG and ENDMSG before and after.  Caches the result; second
  2297. and subsequent calls on the same file won't go to disk." nil nil)
  2298.  
  2299. (autoload (quote shuffle-vector) "cookie1" "\
  2300. Randomly permute the elements of VECTOR (all permutations equally likely)" nil nil)
  2301.  
  2302. ;;;***
  2303.  
  2304. ;;;### (autoloads (copyright copyright-update) "copyright" "copyright.el" (12536 45574))
  2305. ;;; Generated autoloads from copyright.el
  2306.  
  2307. (autoload (quote copyright-update) "copyright" "\
  2308. Update the copyright notice at the beginning of the buffer to indicate
  2309. the current year.  If optional prefix ARG is given replace the years in the
  2310. notice rather than adding the current year after them.  If necessary and
  2311. `copyright-current-gpl-version' is set, the copying permissions following the
  2312. copyright, if any, are updated as well." t nil)
  2313.  
  2314. (autoload (quote copyright) "copyright" "\
  2315. Insert a copyright by $ORGANIZATION notice at cursor." t nil)
  2316.  
  2317. ;;;***
  2318.  
  2319. ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "cpp.el" (12557 20426))
  2320. ;;; Generated autoloads from cpp.el
  2321.  
  2322. (autoload (quote cpp-highlight-buffer) "cpp" "\
  2323. Highlight C code according to preprocessor conditionals.
  2324. This command pops up a buffer which you should edit to specify
  2325. what kind of highlighting to use, and the criteria for highlighting.
  2326. A prefix arg suppresses display of that buffer." t nil)
  2327.  
  2328. (autoload (quote cpp-parse-edit) "cpp" "\
  2329. Edit display information for cpp conditionals." t nil)
  2330.  
  2331. ;;;***
  2332.  
  2333. ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" (12805 29976))
  2334. ;;; Generated autoloads from dabbrev.el
  2335.  
  2336. (define-key esc-map "/" (quote dabbrev-expand))
  2337.  
  2338. (define-key esc-map [67108911] (quote dabbrev-completion))
  2339.  
  2340. (autoload (quote dabbrev-completion) "dabbrev" "\
  2341. Completion on current word.
  2342. Like \\[dabbrev-expand] but finds all expansions in the current buffer
  2343. and presents suggestions for completion.
  2344.  
  2345. With a prefix argument, it searches all buffers accepted by the
  2346. function pointed out by `dabbrev-friend-buffer-function' to find the
  2347. completions.
  2348.  
  2349. If the prefix argument is 16 (which comes from C-u C-u),
  2350. then it searches *all* buffers.
  2351.  
  2352. With no prefix argument, it reuses an old completion list
  2353. if there is a suitable one already." t nil)
  2354.  
  2355. (autoload (quote dabbrev-expand) "dabbrev" "\
  2356. Expand previous word \"dynamically\".
  2357.  
  2358. Expands to the most recent, preceding word for which this is a prefix.
  2359. If no suitable preceding word is found, words following point are
  2360. considered.  If still no suitable word is found, then look in the
  2361. buffers accepted by the function pointed out by variable
  2362. `dabbrev-friend-buffer-function'.
  2363.  
  2364. A positive prefix argument, N, says to take the Nth backward *distinct*
  2365. possibility.  A negative argument says search forward.
  2366.  
  2367. If the cursor has not moved from the end of the previous expansion and
  2368. no argument is given, replace the previously-made expansion
  2369. with the next possible expansion not yet tried.
  2370.  
  2371. The variable `dabbrev-backward-only' may be used to limit the
  2372. direction of search to backward if set non-nil.
  2373.  
  2374. See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]." t nil)
  2375.  
  2376. ;;;***
  2377.  
  2378. ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" "debug.el" (12716 34307))
  2379. ;;; Generated autoloads from debug.el
  2380.  
  2381. (setq debugger (quote debug))
  2382.  
  2383. (autoload (quote debug) "debug" "\
  2384. Enter debugger.  To return, type \\<debugger-mode-map>`\\[debugger-continue]'.
  2385. Arguments are mainly for use when this is called from the internals
  2386. of the evaluator.
  2387.  
  2388. You may call with no args, or you may pass nil as the first arg and
  2389. any other args you like.  In that case, the list of args after the
  2390. first will be printed into the backtrace buffer." t nil)
  2391.  
  2392. (autoload (quote debug-on-entry) "debug" "\
  2393. Request FUNCTION to invoke debugger each time it is called.
  2394. If you tell the debugger to continue, FUNCTION's execution proceeds.
  2395. This works by modifying the definition of FUNCTION,
  2396. which must be written in Lisp, not predefined.
  2397. Use \\[cancel-debug-on-entry] to cancel the effect of this command.
  2398. Redefining FUNCTION also cancels it." t nil)
  2399.  
  2400. (autoload (quote cancel-debug-on-entry) "debug" "\
  2401. Undo effect of \\[debug-on-entry] on FUNCTION.
  2402. If argument is nil or an empty string, cancel for all functions." t nil)
  2403.  
  2404. ;;;***
  2405.  
  2406. ;;;### (autoloads (decipher-mode decipher) "decipher" "decipher.el" (12785 5878))
  2407. ;;; Generated autoloads from decipher.el
  2408.  
  2409. (autoload (quote decipher) "decipher" "\
  2410. Format a buffer of ciphertext for cryptanalysis and enter Decipher mode." t nil)
  2411.  
  2412. (autoload (quote decipher-mode) "decipher" "\
  2413. Major mode for decrypting monoalphabetic substitution ciphers.
  2414. Lower-case letters enter plaintext.
  2415. Upper-case letters are commands.
  2416.  
  2417. The buffer is made read-only so that normal Emacs commands cannot
  2418. modify it.
  2419.  
  2420. The most useful commands are:
  2421. \\<decipher-mode-map>
  2422. \\[decipher-digram-list]  Display a list of all digrams & their frequency
  2423. \\[decipher-frequency-count]  Display the frequency of each ciphertext letter
  2424. \\[decipher-adjacency-list]  Show adjacency list for current letter (lists letters appearing next to it)
  2425. \\[decipher-make-checkpoint]  Save the current cipher alphabet (checkpoint)
  2426. \\[decipher-restore-checkpoint]  Restore a saved cipher alphabet (checkpoint)" t nil)
  2427.  
  2428. ;;;***
  2429.  
  2430. ;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (12536 45574))
  2431. ;;; Generated autoloads from delsel.el
  2432.  
  2433. (defalias (quote pending-delete-mode) (quote delete-selection-mode))
  2434.  
  2435. (autoload (quote delete-selection-mode) "delsel" "\
  2436. Toggle Delete Selection mode.
  2437. When ON, typed text replaces the selection if the selection is active.
  2438. When OFF, typed text is just inserted at point." t nil)
  2439.  
  2440. ;;;***
  2441.  
  2442. ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) "derived" "derived.el" (12704 56747))
  2443. ;;; Generated autoloads from derived.el
  2444.  
  2445. (autoload (quote define-derived-mode) "derived" "\
  2446. Create a new mode as a variant of an existing mode.
  2447.  
  2448. The arguments to this command are as follow:
  2449.  
  2450. CHILD:     the name of the command for the derived mode.
  2451. PARENT:    the name of the command for the parent mode (ie. text-mode).
  2452. NAME:      a string which will appear in the status line (ie. \"Hypertext\")
  2453. DOCSTRING: an optional documentation string--if you do not supply one,
  2454.            the function will attempt to invent something useful.
  2455. BODY:      forms to execute just before running the
  2456.            hooks for the new mode.
  2457.  
  2458. Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode:
  2459.  
  2460.   (define-derived-mode LaTeX-thesis-mode LaTeX-mode \"LaTeX-Thesis\")
  2461.  
  2462. You could then make new key bindings for `LaTeX-thesis-mode-map'
  2463. without changing regular LaTeX mode.  In this example, BODY is empty,
  2464. and DOCSTRING is generated by default.
  2465.  
  2466. On a more complicated level, the following command uses sgml-mode as
  2467. the parent, and then sets the variable `case-fold-search' to nil:
  2468.  
  2469.   (define-derived-mode article-mode sgml-mode \"Article\"
  2470.     \"Major mode for editing technical articles.\"
  2471.     (setq case-fold-search nil))
  2472.  
  2473. Note that if the documentation string had been left out, it would have
  2474. been generated automatically, with a reference to the keymap." nil (quote macro))
  2475.  
  2476. (autoload (quote derived-mode-init-mode-variables) "derived" "\
  2477. Initialise variables for a new mode. 
  2478. Right now, if they don't already exist, set up a blank keymap, an
  2479. empty syntax table, and an empty abbrev table -- these will be merged
  2480. the first time the mode is used." nil nil)
  2481.  
  2482. ;;;***
  2483.  
  2484. ;;;### (autoloads (diary) "diary-lib" "diary-lib.el" (12704 37365))
  2485. ;;; Generated autoloads from diary-lib.el
  2486.  
  2487. (autoload (quote diary) "diary-lib" "\
  2488. Generate the diary window for ARG days starting with the current date.
  2489. If no argument is provided, the number of days of diary entries is governed
  2490. by the variable `number-of-diary-entries'.  This function is suitable for
  2491. execution in a `.emacs' file." t nil)
  2492.  
  2493. ;;;***
  2494.  
  2495. ;;;### (autoloads (diff-backup diff) "diff" "diff.el" (12536 45574))
  2496. ;;; Generated autoloads from diff.el
  2497.  
  2498. (autoload (quote diff) "diff" "\
  2499. Find and display the differences between OLD and NEW files.
  2500. Interactively the current buffer's file name is the default for NEW
  2501. and a backup file for NEW is the default for OLD.
  2502. With prefix arg, prompt for diff switches." t nil)
  2503.  
  2504. (autoload (quote diff-backup) "diff" "\
  2505. Diff this file with its backup file or vice versa.
  2506. Uses the latest backup, if there are several numerical backups.
  2507. If this file is a backup, diff it with its original.
  2508. The backup file is the first file given to `diff'." t nil)
  2509.  
  2510. ;;;***
  2511.  
  2512. ;;;### (autoloads (dired-noselect dired-other-frame dired-other-window dired) "dired" "dired.el" (12724 30616))
  2513. ;;; Generated autoloads from dired.el
  2514.  
  2515. (defvar dired-listing-switches "-al" "\
  2516. *Switches passed to `ls' for dired.  MUST contain the `l' option.
  2517. May contain all other options that don't contradict `-l';
  2518. may contain even `F', `b', `i' and `s'.  See also the variable
  2519. `dired-ls-F-marks-symlinks' concerning the `F' switch.")
  2520.  
  2521. (defvar dired-chown-program (if (memq system-type (quote (hpux dgux usg-unix-v irix linux lignux))) "chown" (if (file-exists-p "/usr/sbin/chown") "/usr/sbin/chown" "/etc/chown")) "\
  2522. Name of chown command (usually `chown' or `/etc/chown').")
  2523.  
  2524. (defvar dired-ls-F-marks-symlinks nil "\
  2525. *Informs dired about how `ls -lF' marks symbolic links.
  2526. Set this to t if `ls' (or whatever program is specified by
  2527. `insert-directory-program') with `-lF' marks the symbolic link
  2528. itself with a trailing @ (usually the case under Ultrix).
  2529.  
  2530. Example: if `ln -s foo bar; ls -F bar' gives `bar -> foo', set it to
  2531. nil (the default), if it gives `bar@ -> foo', set it to t.
  2532.  
  2533. Dired checks if there is really a @ appended.  Thus, if you have a
  2534. marking `ls' program on one host and a non-marking on another host, and
  2535. don't care about symbolic links which really end in a @, you can
  2536. always set this variable to t.")
  2537.  
  2538. (defvar dired-trivial-filenames "^\\.\\.?$\\|^#" "\
  2539. *Regexp of files to skip when finding first file of a directory.
  2540. A value of nil means move to the subdir line.
  2541. A value of t means move to first file.")
  2542.  
  2543. (defvar dired-keep-marker-rename t "\
  2544. *Controls marking of renamed files.
  2545. If t, files keep their previous marks when they are renamed.
  2546. If a character, renamed files (whether previously marked or not)
  2547. are afterward marked with that character.")
  2548.  
  2549. (defvar dired-keep-marker-copy 67 "\
  2550. *Controls marking of copied files.
  2551. If t, copied files are marked if and as the corresponding original files were.
  2552. If a character, copied files are unconditionally marked with that character.")
  2553.  
  2554. (defvar dired-keep-marker-hardlink 72 "\
  2555. *Controls marking of newly made hard links.
  2556. If t, they are marked if and as the files linked to were marked.
  2557. If a character, new links are unconditionally marked with that character.")
  2558.  
  2559. (defvar dired-keep-marker-symlink 89 "\
  2560. *Controls marking of newly made symbolic links.
  2561. If t, they are marked if and as the files linked to were marked.
  2562. If a character, new links are unconditionally marked with that character.")
  2563.  
  2564. (defvar dired-dwim-target nil "\
  2565. *If non-nil, dired tries to guess a default target directory.
  2566. This means: if there is a dired buffer displayed in the next window,
  2567. use its current subdir, instead of the current subdir of this dired buffer.
  2568.  
  2569. The target is used in the prompt for file copy, rename etc.")
  2570.  
  2571. (defvar dired-copy-preserve-time t "\
  2572. *If non-nil, Dired preserves the last-modified time in a file copy.
  2573. \(This works on only some systems.)")
  2574.  (define-key ctl-x-map "d" 'dired)
  2575.  
  2576. (autoload (quote dired) "dired" "\
  2577. \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it.
  2578. Optional second argument SWITCHES specifies the `ls' options used.
  2579. \(Interactively, use a prefix argument to be able to specify SWITCHES.)
  2580. Dired displays a list of files in DIRNAME (which may also have
  2581. shell wildcards appended to select certain files).  If DIRNAME is a cons,
  2582. its first element is taken as the directory name and the rest as an explicit
  2583. list of files to make directory entries for.
  2584. \\<dired-mode-map>You can move around in it with the usual commands.
  2585. You can flag files for deletion with \\[dired-flag-file-deletion] and then
  2586. delete them by typing \\[dired-do-flagged-delete].
  2587. Type \\[describe-mode] after entering dired for more info.
  2588.  
  2589. If DIRNAME is already in a dired buffer, that buffer is used without refresh." t nil)
  2590.  (define-key ctl-x-4-map "d" 'dired-other-window)
  2591.  
  2592. (autoload (quote dired-other-window) "dired" "\
  2593. \"Edit\" directory DIRNAME.  Like `dired' but selects in another window." t nil)
  2594.  (define-key ctl-x-5-map "d" 'dired-other-frame)
  2595.  
  2596. (autoload (quote dired-other-frame) "dired" "\
  2597. \"Edit\" directory DIRNAME.  Like `dired' but makes a new frame." t nil)
  2598.  
  2599. (autoload (quote dired-noselect) "dired" "\
  2600. Like `dired' but returns the dired buffer as value, does not select it." nil nil)
  2601.  
  2602. ;;;***
  2603.  
  2604. ;;;### (autoloads (dired-do-query-replace dired-do-search dired-hide-all dired-hide-subdir dired-tree-down dired-tree-up dired-kill-subdir dired-mark-subdir-files dired-goto-subdir dired-prev-subdir dired-maybe-insert-subdir dired-downcase dired-upcase dired-do-symlink-regexp dired-do-hardlink-regexp dired-do-copy-regexp dired-do-rename-regexp dired-do-rename dired-do-hardlink dired-do-symlink dired-do-copy dired-create-directory dired-rename-file dired-copy-file dired-relist-file dired-remove-file dired-add-file dired-do-redisplay dired-do-load dired-do-byte-compile dired-do-compress dired-compress-file dired-do-kill-lines dired-do-shell-command dired-do-print dired-do-chown dired-do-chgrp dired-do-chmod dired-backup-diff dired-diff) "dired-aux" "dired-aux.el" (12682 60213))
  2605. ;;; Generated autoloads from dired-aux.el
  2606.  
  2607. (autoload (quote dired-diff) "dired-aux" "\
  2608. Compare file at point with file FILE using `diff'.
  2609. FILE defaults to the file at the mark.
  2610. The prompted-for file is the first file given to `diff'.
  2611. With prefix arg, prompt for second argument SWITCHES,
  2612.  which is options for `diff'." t nil)
  2613.  
  2614. (autoload (quote dired-backup-diff) "dired-aux" "\
  2615. Diff this file with its backup file or vice versa.
  2616. Uses the latest backup, if there are several numerical backups.
  2617. If this file is a backup, diff it with its original.
  2618. The backup file is the first file given to `diff'.
  2619. With prefix arg, prompt for argument SWITCHES which is options for `diff'." t nil)
  2620.  
  2621. (autoload (quote dired-do-chmod) "dired-aux" "\
  2622. Change the mode of the marked (or next ARG) files.
  2623. This calls chmod, thus symbolic modes like `g+w' are allowed." t nil)
  2624.  
  2625. (autoload (quote dired-do-chgrp) "dired-aux" "\
  2626. Change the group of the marked (or next ARG) files." t nil)
  2627.  
  2628. (autoload (quote dired-do-chown) "dired-aux" "\
  2629. Change the owner of the marked (or next ARG) files." t nil)
  2630.  
  2631. (autoload (quote dired-do-print) "dired-aux" "\
  2632. Print the marked (or next ARG) files.
  2633. Uses the shell command coming from variables `lpr-command' and
  2634. `lpr-switches' as default." t nil)
  2635.  
  2636. (autoload (quote dired-do-shell-command) "dired-aux" "\
  2637. Run a shell command COMMAND on the marked files.
  2638. If no files are marked or a specific numeric prefix arg is given,
  2639. the next ARG files are used.  Just \\[universal-argument] means the current file.
  2640. The prompt mentions the file(s) or the marker, as appropriate.
  2641.  
  2642. If there is output, it goes to a separate buffer.
  2643.  
  2644. Normally the command is run on each file individually.
  2645. However, if there is a `*' in the command then it is run
  2646. just once with the entire file list substituted there.
  2647.  
  2648. No automatic redisplay of dired buffers is attempted, as there's no
  2649. telling what files the command may have changed.  Type
  2650. \\[dired-do-redisplay] to redisplay the marked files.
  2651.  
  2652. The shell command has the top level directory as working directory, so
  2653. output files usually are created there instead of in a subdir." t nil)
  2654.  
  2655. (autoload (quote dired-do-kill-lines) "dired-aux" "\
  2656. Kill all marked lines (not the files).
  2657. With a prefix argument, kill that many lines starting with the current line.
  2658. \(A negative argument kills lines before the current line.)
  2659. To kill an entire subdirectory, go to its directory header line
  2660. and use this command with a prefix argument (the value does not matter)." t nil)
  2661.  
  2662. (autoload (quote dired-compress-file) "dired-aux" nil nil nil)
  2663.  
  2664. (autoload (quote dired-do-compress) "dired-aux" "\
  2665. Compress or uncompress marked (or next ARG) files." t nil)
  2666.  
  2667. (autoload (quote dired-do-byte-compile) "dired-aux" "\
  2668. Byte compile marked (or next ARG) Emacs Lisp files." t nil)
  2669.  
  2670. (autoload (quote dired-do-load) "dired-aux" "\
  2671. Load the marked (or next ARG) Emacs Lisp files." t nil)
  2672.  
  2673. (autoload (quote dired-do-redisplay) "dired-aux" "\
  2674. Redisplay all marked (or next ARG) files.
  2675. If on a subdir line, redisplay that subdirectory.  In that case,
  2676. a prefix arg lets you edit the `ls' switches used for the new listing." t nil)
  2677.  
  2678. (autoload (quote dired-add-file) "dired-aux" nil nil nil)
  2679.  
  2680. (autoload (quote dired-remove-file) "dired-aux" nil nil nil)
  2681.  
  2682. (autoload (quote dired-relist-file) "dired-aux" nil nil nil)
  2683.  
  2684. (autoload (quote dired-copy-file) "dired-aux" nil nil nil)
  2685.  
  2686. (autoload (quote dired-rename-file) "dired-aux" nil nil nil)
  2687.  
  2688. (autoload (quote dired-create-directory) "dired-aux" "\
  2689. Create a directory called DIRECTORY." t nil)
  2690.  
  2691. (autoload (quote dired-do-copy) "dired-aux" "\
  2692. Copy all marked (or next ARG) files, or copy the current file.
  2693. This normally preserves the last-modified date when copying.
  2694. When operating on just the current file, you specify the new name.
  2695. When operating on multiple or marked files, you specify a directory,
  2696. and new copies of these files are made in that directory
  2697. with the same names that the files currently have." t nil)
  2698.  
  2699. (autoload (quote dired-do-symlink) "dired-aux" "\
  2700. Make symbolic links to current file or all marked (or next ARG) files.
  2701. When operating on just the current file, you specify the new name.
  2702. When operating on multiple or marked files, you specify a directory
  2703. and new symbolic links are made in that directory
  2704. with the same names that the files currently have." t nil)
  2705.  
  2706. (autoload (quote dired-do-hardlink) "dired-aux" "\
  2707. Add names (hard links) current file or all marked (or next ARG) files.
  2708. When operating on just the current file, you specify the new name.
  2709. When operating on multiple or marked files, you specify a directory
  2710. and new hard links are made in that directory
  2711. with the same names that the files currently have." t nil)
  2712.  
  2713. (autoload (quote dired-do-rename) "dired-aux" "\
  2714. Rename current file or all marked (or next ARG) files.
  2715. When renaming just the current file, you specify the new name.
  2716. When renaming multiple or marked files, you specify a directory." t nil)
  2717.  
  2718. (autoload (quote dired-do-rename-regexp) "dired-aux" "\
  2719. Rename marked files containing REGEXP to NEWNAME.
  2720. As each match is found, the user must type a character saying
  2721.   what to do with it.  For directions, type \\[help-command] at that time.
  2722. NEWNAME may contain \\=\\<n> or \\& as in `query-replace-regexp'.
  2723. REGEXP defaults to the last regexp used.
  2724. With a zero prefix arg, renaming by regexp affects the complete
  2725.   pathname - usually only the non-directory part of file names is used
  2726.   and changed." t nil)
  2727.  
  2728. (autoload (quote dired-do-copy-regexp) "dired-aux" "\
  2729. Copy all marked files containing REGEXP to NEWNAME.
  2730. See function `dired-rename-regexp' for more info." t nil)
  2731.  
  2732. (autoload (quote dired-do-hardlink-regexp) "dired-aux" "\
  2733. Hardlink all marked files containing REGEXP to NEWNAME.
  2734. See function `dired-rename-regexp' for more info." t nil)
  2735.  
  2736. (autoload (quote dired-do-symlink-regexp) "dired-aux" "\
  2737. Symlink all marked files containing REGEXP to NEWNAME.
  2738. See function `dired-rename-regexp' for more info." t nil)
  2739.  
  2740. (autoload (quote dired-upcase) "dired-aux" "\
  2741. Rename all marked (or next ARG) files to upper case." t nil)
  2742.  
  2743. (autoload (quote dired-downcase) "dired-aux" "\
  2744. Rename all marked (or next ARG) files to lower case." t nil)
  2745.  
  2746. (autoload (quote dired-maybe-insert-subdir) "dired-aux" "\
  2747. Insert this subdirectory into the same dired buffer.
  2748. If it is already present, just move to it (type \\[dired-do-redisplay] to refresh),
  2749.   else inserts it at its natural place (as `ls -lR' would have done).
  2750. With a prefix arg, you may edit the ls switches used for this listing.
  2751.   You can add `R' to the switches to expand the whole tree starting at
  2752.   this subdirectory.
  2753. This function takes some pains to conform to `ls -lR' output." t nil)
  2754.  
  2755. (autoload (quote dired-prev-subdir) "dired-aux" "\
  2756. Go to previous subdirectory, regardless of level.
  2757. When called interactively and not on a subdir line, go to this subdir's line." t nil)
  2758.  
  2759. (autoload (quote dired-goto-subdir) "dired-aux" "\
  2760. Go to end of header line of DIR in this dired buffer.
  2761. Return value of point on success, otherwise return nil.
  2762. The next char is either \\n, or \\r if DIR is hidden." t nil)
  2763.  
  2764. (autoload (quote dired-mark-subdir-files) "dired-aux" "\
  2765. Mark all files except `.' and `..'." t nil)
  2766.  
  2767. (autoload (quote dired-kill-subdir) "dired-aux" "\
  2768. Remove all lines of current subdirectory.
  2769. Lower levels are unaffected." t nil)
  2770.  
  2771. (autoload (quote dired-tree-up) "dired-aux" "\
  2772. Go up ARG levels in the dired tree." t nil)
  2773.  
  2774. (autoload (quote dired-tree-down) "dired-aux" "\
  2775. Go down in the dired tree." t nil)
  2776.  
  2777. (autoload (quote dired-hide-subdir) "dired-aux" "\
  2778. Hide or unhide the current subdirectory and move to next directory.
  2779. Optional prefix arg is a repeat factor.
  2780. Use \\[dired-hide-all] to (un)hide all directories." t nil)
  2781.  
  2782. (autoload (quote dired-hide-all) "dired-aux" "\
  2783. Hide all subdirectories, leaving only their header lines.
  2784. If there is already something hidden, make everything visible again.
  2785. Use \\[dired-hide-subdir] to (un)hide a particular subdirectory." t nil)
  2786.  
  2787. (autoload (quote dired-do-search) "dired-aux" "\
  2788. Search through all marked files for a match for REGEXP.
  2789. Stops when a match is found.
  2790. To continue searching for next match, use command \\[tags-loop-continue]." t nil)
  2791.  
  2792. (autoload (quote dired-do-query-replace) "dired-aux" "\
  2793. Do `query-replace-regexp' of FROM with TO, on all marked files.
  2794. Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
  2795. If you exit (\\[keyboard-quit] or ESC), you can resume the query replace
  2796. with the command \\[tags-loop-continue]." t nil)
  2797.  
  2798. ;;;***
  2799.  
  2800. ;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (12536 45574))
  2801. ;;; Generated autoloads from dired-x.el
  2802.  
  2803. (autoload (quote dired-jump) "dired-x" "\
  2804. Jump to dired buffer corresponding to current buffer.
  2805. If in a file, dired the current directory and move to file's line.
  2806. If in dired already, pop up a level and goto old directory's line.
  2807. In case the proper dired file line cannot be found, refresh the dired
  2808. buffer and try again." t nil)
  2809.  
  2810. ;;;***
  2811.  
  2812. ;;;### (autoloads (disassemble) "disass" "disass.el" (12649 12917))
  2813. ;;; Generated autoloads from disass.el
  2814.  
  2815. (autoload (quote disassemble) "disass" "\
  2816. Print disassembled code for OBJECT in (optional) BUFFER.
  2817. OBJECT can be a symbol defined as a function, or a function itself
  2818. \(a lambda expression or a compiled-function object).
  2819. If OBJECT is not already compiled, we compile it, but do not
  2820. redefine OBJECT if it is a symbol." t nil)
  2821.  
  2822. ;;;***
  2823.  
  2824. ;;;### (autoloads (standard-display-european create-glyph standard-display-underline standard-display-graphic standard-display-g1 standard-display-ascii standard-display-default standard-display-8bit describe-current-display-table describe-display-table set-display-table-slot display-table-slot make-display-table) "disp-table" "disp-table.el" (12536 45574))
  2825. ;;; Generated autoloads from disp-table.el
  2826.  
  2827. (autoload (quote make-display-table) "disp-table" "\
  2828. Return a new, empty display table." nil nil)
  2829.  
  2830. (autoload (quote display-table-slot) "disp-table" "\
  2831. Return the value of the extra slot in DISPLAY-TABLE named SLOT.
  2832. SLOT may be a number from 0 to 5 inclusive, or a slot name (symbol).
  2833. Valid symbols are `truncation', `wrap', `escape', `control',
  2834. `selective-display', and `vertical-border'." nil nil)
  2835.  
  2836. (autoload (quote set-display-table-slot) "disp-table" "\
  2837. Set the value of the extra slot in DISPLAY-TABLE named SLOT to VALUE.
  2838. SLOT may be a number from 0 to 5 inclusive, or a name (symbol).
  2839. Valid symbols are `truncation', `wrap', `escape', `control',
  2840. `selective-display', and `vertical-border'." nil nil)
  2841.  
  2842. (autoload (quote describe-display-table) "disp-table" "\
  2843. Describe the display table DT in a help buffer." nil nil)
  2844.  
  2845. (autoload (quote describe-current-display-table) "disp-table" "\
  2846. Describe the display table in use in the selected window and buffer." t nil)
  2847.  
  2848. (autoload (quote standard-display-8bit) "disp-table" "\
  2849. Display characters in the range L to H literally." nil nil)
  2850.  
  2851. (autoload (quote standard-display-default) "disp-table" "\
  2852. Display characters in the range L to H using the default notation." nil nil)
  2853.  
  2854. (autoload (quote standard-display-ascii) "disp-table" "\
  2855. Display character C using printable string S." nil nil)
  2856.  
  2857. (autoload (quote standard-display-g1) "disp-table" "\
  2858. Display character C as character SC in the g1 character set.
  2859. This function assumes that your terminal uses the SO/SI characters;
  2860. it is meaningless for an X frame." nil nil)
  2861.  
  2862. (autoload (quote standard-display-graphic) "disp-table" "\
  2863. Display character C as character GC in graphics character set.
  2864. This function assumes VT100-compatible escapes; it is meaningless for an
  2865. X frame." nil nil)
  2866.  
  2867. (autoload (quote standard-display-underline) "disp-table" "\
  2868. Display character C as character UC plus underlining." nil nil)
  2869.  
  2870. (autoload (quote create-glyph) "disp-table" nil nil nil)
  2871.  
  2872. (autoload (quote standard-display-european) "disp-table" "\
  2873. Toggle display of European characters encoded with ISO 8859.
  2874. When enabled, characters in the range of 160 to 255 display not
  2875. as octal escapes, but as accented characters.
  2876. With prefix argument, enable European character display iff arg is positive." t nil)
  2877.  
  2878. ;;;***
  2879.  
  2880. ;;;### (autoloads (dissociated-press) "dissociate" "dissociate.el" (12536 45574))
  2881. ;;; Generated autoloads from dissociate.el
  2882.  
  2883. (autoload (quote dissociated-press) "dissociate" "\
  2884. Dissociate the text of the current buffer.
  2885. Output goes in buffer named *Dissociation*,
  2886. which is redisplayed each time text is added to it.
  2887. Every so often the user must say whether to continue.
  2888. If ARG is positive, require ARG chars of continuity.
  2889. If ARG is negative, require -ARG words of continuity.
  2890. Default is 2." t nil)
  2891.  
  2892. ;;;***
  2893.  
  2894. ;;;### (autoloads (docref-setup) "docref" "docref.el" (12536 45574))
  2895. ;;; Generated autoloads from docref.el
  2896.  
  2897. (autoload (quote docref-setup) "docref" "\
  2898. Process docref cross-references in the current buffer.
  2899. See also \\(f@docref-subst)." t nil)
  2900.  
  2901. ;;;***
  2902.  
  2903. ;;;### (autoloads (doctor) "doctor" "doctor.el" (12668 63367))
  2904. ;;; Generated autoloads from doctor.el
  2905.  
  2906. (autoload (quote doctor) "doctor" "\
  2907. Switch to *doctor* buffer and start giving psychotherapy." t nil)
  2908.  
  2909. ;;;***
  2910.  
  2911. ;;;### (autoloads (double-mode) "double" "double.el" (12536 45574))
  2912. ;;; Generated autoloads from double.el
  2913.  
  2914. (autoload (quote double-mode) "double" "\
  2915. Toggle Double mode.
  2916. With prefix arg, turn Double mode on iff arg is positive.
  2917.  
  2918. When Double mode is on, some keys will insert different strings
  2919. when pressed twice.  See variable `double-map' for details." t nil)
  2920.  
  2921. ;;;***
  2922.  
  2923. ;;;### (autoloads (dunnet) "dunnet" "dunnet.el" (12602 11920))
  2924. ;;; Generated autoloads from dunnet.el
  2925.  
  2926. (autoload (quote dunnet) "dunnet" "\
  2927. Switch to *dungeon* buffer and start game." t nil)
  2928.  
  2929. ;;;***
  2930.  
  2931. ;;;### (autoloads (easy-menu-create-keymaps easy-menu-do-define easy-menu-define) "easymenu" "easymenu.el" (12736 32257))
  2932. ;;; Generated autoloads from easymenu.el
  2933.  
  2934. (autoload (quote easy-menu-define) "easymenu" "\
  2935. Define a menu bar submenu in maps MAPS, according to MENU.
  2936. The menu keymap is stored in symbol SYMBOL, both as its value
  2937. and as its function definition.   DOC is used as the doc string for SYMBOL.
  2938.  
  2939. The first element of MENU must be a string.  It is the menu bar item name.
  2940. The rest of the elements are menu items.
  2941.  
  2942. A menu item is usually a vector of three elements:  [NAME CALLBACK ENABLE]
  2943.  
  2944. NAME is a string--the menu item name.
  2945.  
  2946. CALLBACK is a command to run when the item is chosen,
  2947. or a list to evaluate when the item is chosen.
  2948.  
  2949. ENABLE is an expression; the item is enabled for selection
  2950. whenever this expression's value is non-nil.
  2951.  
  2952. Alternatively, a menu item may have the form: 
  2953.  
  2954.    [ NAME CALLBACK [ KEYWORD ARG ] ... ]
  2955.  
  2956. Where KEYWORD is one of the symbol defined below.
  2957.  
  2958.    :keys KEYS
  2959.  
  2960. KEYS is a string; a complex keyboard equivalent to this menu item.
  2961. This is normally not needed because keyboard equivalents are usually
  2962. computed automatically.
  2963.  
  2964.    :active ENABLE
  2965.  
  2966. ENABLE is an expression; the item is enabled for selection
  2967. whenever this expression's value is non-nil.
  2968.  
  2969.    :suffix NAME
  2970.  
  2971. NAME is a string; the name of an argument to CALLBACK.
  2972.  
  2973.    :style STYLE
  2974.    
  2975. STYLE is a symbol describing the type of menu item.  The following are
  2976. defined:  
  2977.  
  2978. toggle: A checkbox.  
  2979.         Currently just prepend the name with the string \"Toggle \".
  2980. radio: A radio button. 
  2981. nil: An ordinary menu item.
  2982.  
  2983.    :selected SELECTED
  2984.  
  2985. SELECTED is an expression; the checkbox or radio button is selected
  2986. whenever this expression's value is non-nil.
  2987. Currently just disable radio buttons, no effect on checkboxes.
  2988.  
  2989. A menu item can be a string.  Then that string appears in the menu as
  2990. unselectable text.  A string consisting solely of hyphens is displayed
  2991. as a solid horizontal line.
  2992.  
  2993. A menu item can be a list.  It is treated as a submenu.
  2994. The first element should be the submenu name.  That's used as the
  2995. menu item in the top-level menu.  The cdr of the submenu list
  2996. is a list of menu items, as above." nil (quote macro))
  2997.  
  2998. (autoload (quote easy-menu-do-define) "easymenu" nil nil nil)
  2999.  
  3000. (autoload (quote easy-menu-create-keymaps) "easymenu" nil nil nil)
  3001.  
  3002. ;;;***
  3003.  
  3004. ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" (12550 52736))
  3005. ;;; Generated autoloads from ebuff-menu.el
  3006.  
  3007. (autoload (quote electric-buffer-list) "ebuff-menu" "\
  3008. Pops up a buffer describing the set of Emacs buffers.
  3009. Vaguely like ITS lunar select buffer; combining typeoutoid buffer
  3010. listing with menuoid buffer selection.
  3011.  
  3012. If the very next character typed is a space then the buffer list
  3013. window disappears.  Otherwise, one may move around in the buffer list
  3014. window, marking buffers to be selected, saved or deleted.
  3015.  
  3016. To exit and select a new buffer, type a space when the cursor is on
  3017. the appropriate line of the buffer-list window.  Other commands are
  3018. much like those of buffer-menu-mode.
  3019.  
  3020. Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil.
  3021.  
  3022. \\{electric-buffer-menu-mode-map}" t nil)
  3023.  
  3024. ;;;***
  3025.  
  3026. ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" "echistory.el" (12536 45574))
  3027. ;;; Generated autoloads from echistory.el
  3028.  
  3029. (autoload (quote Electric-command-history-redo-expression) "echistory" "\
  3030. Edit current history line in minibuffer and execute result.
  3031. With prefix arg NOCONFIRM, execute current line as-is without editing." t nil)
  3032.  
  3033. ;;;***
  3034.  
  3035. ;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec) "edebug" "edebug.el" (12790 20773))
  3036. ;;; Generated autoloads from edebug.el
  3037.  
  3038. (autoload (quote def-edebug-spec) "edebug" "\
  3039. Set the edebug-form-spec property of SYMBOL according to SPEC.
  3040. Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol
  3041. \(naming a function), or a list." nil (quote macro))
  3042.  
  3043. (defalias (quote edebug-defun) (quote edebug-eval-top-level-form))
  3044.  
  3045. (autoload (quote edebug-eval-top-level-form) "edebug" "\
  3046. Evaluate a top level form, such as a defun or defmacro.
  3047. This is like `eval-defun', but the code is always instrumented for Edebug.
  3048. Print its name in the minibuffer and leave point where it is,
  3049. or if an error occurs, leave point after it with mark at the original point." t nil)
  3050.  
  3051. ;;;***
  3052.  
  3053. ;;;### (autoloads (ediff-documentation ediff-version ediff-revision ediff-patch-buffer ediff-patch-file run-ediff-from-cvs-buffer ediff-merge-revisions-with-ancestor ediff-merge-revisions ediff-merge-buffers-with-ancestor ediff-merge-buffers ediff-merge-files-with-ancestor ediff-merge-files ediff-regions-linewise ediff-regions-wordwise ediff-windows-linewise ediff-windows-wordwise ediff-merge-directory-revisions-with-ancestor ediff-merge-directory-revisions ediff-merge-directories-with-ancestor ediff-merge-directories ediff-directories3 ediff-directory-revisions ediff-directories ediff-buffers3 ediff-buffers ediff-files3 ediff-files) "ediff" "ediff.el" (12747 20842))
  3054. ;;; Generated autoloads from ediff.el
  3055.  
  3056. (autoload (quote ediff-files) "ediff" "\
  3057. Run Ediff on a pair of files, FILE-A and FILE-B." t nil)
  3058.  
  3059. (autoload (quote ediff-files3) "ediff" "\
  3060. Run Ediff on three files, FILE-A, FILE-B, and FILE-C." t nil)
  3061.  
  3062. (defalias (quote ediff3) (quote ediff-files3))
  3063.  
  3064. (defalias (quote ediff) (quote ediff-files))
  3065.  
  3066. (autoload (quote ediff-buffers) "ediff" "\
  3067. Run Ediff on a pair of buffers, BUFFER-A and BUFFER-B." t nil)
  3068.  
  3069. (defalias (quote ebuffers) (quote ediff-buffers))
  3070.  
  3071. (autoload (quote ediff-buffers3) "ediff" "\
  3072. Run Ediff on three buffers, BUFFER-A, BUFFER-B, and BUFFER-C." t nil)
  3073.  
  3074. (defalias (quote ebuffers3) (quote ediff-buffers3))
  3075.  
  3076. (autoload (quote ediff-directories) "ediff" "\
  3077. Run Ediff on a pair of directories, DIR1 and DIR2, comparing files that have
  3078. the same name in both. The third argument, REGEXP, is a regular expression that
  3079. can be used to filter out certain file names." t nil)
  3080.  
  3081. (defalias (quote edirs) (quote ediff-directories))
  3082.  
  3083. (autoload (quote ediff-directory-revisions) "ediff" "\
  3084. Run Ediff on a directory, DIR1, comparing its files with their revisions.
  3085. The second argument, REGEXP, is a regular expression that filters the file
  3086. names. Only the files that are under revision control are taken into account." t nil)
  3087.  
  3088. (defalias (quote edir-revisions) (quote ediff-directory-revisions))
  3089.  
  3090. (autoload (quote ediff-directories3) "ediff" "\
  3091. Run Ediff on three directories, DIR1, DIR2, and DIR3, comparing files that
  3092. have the same name in all three. The last argument, REGEXP, is a regular
  3093. expression that can be used to filter out certain file names." t nil)
  3094.  
  3095. (defalias (quote edirs3) (quote ediff-directories3))
  3096.  
  3097. (autoload (quote ediff-merge-directories) "ediff" "\
  3098. Run Ediff on a pair of directories, DIR1 and DIR2, merging files that have
  3099. the same name in both. The third argument, REGEXP, is a regular expression that
  3100. can be used to filter out certain file names." t nil)
  3101.  
  3102. (defalias (quote edirs-merge) (quote ediff-merge-directories))
  3103.  
  3104. (autoload (quote ediff-merge-directories-with-ancestor) "ediff" "\
  3105. Merge files in directories DIR1 and DIR2 using files in ANCESTOR-DIR as ancestors.
  3106. Ediff merges files that have identical names in DIR1, DIR2. If a pair of files
  3107. in DIR1 and DIR2 doesn't have an ancestor in ANCESTOR-DIR, Ediff will merge
  3108. without ancestor. The fourth argument, REGEXP, is a regular expression that
  3109. can be used to filter out certain file names." t nil)
  3110.  
  3111. (autoload (quote ediff-merge-directory-revisions) "ediff" "\
  3112. Run Ediff on a directory, DIR1, merging its files with their revisions.
  3113. The second argument, REGEXP, is a regular expression that filters the file
  3114. names. Only the files that are under revision control are taken into account." t nil)
  3115.  
  3116. (defalias (quote edir-merge-revisions) (quote ediff-merge-directory-revisions))
  3117.  
  3118. (autoload (quote ediff-merge-directory-revisions-with-ancestor) "ediff" "\
  3119. Run Ediff on a directory, DIR1, merging its files with their revisions and ancestors.
  3120. The second argument, REGEXP, is a regular expression that filters the file
  3121. names. Only the files that are under revision control are taken into account." t nil)
  3122.  
  3123. (defalias (quote edir-merge-revisions-with-ancestor) (quote ediff-merge-directory-revisions-with-ancestor))
  3124.  
  3125. (defalias (quote edirs-merge-with-ancestor) (quote ediff-merge-directories-with-ancestor))
  3126.  
  3127. (autoload (quote ediff-windows-wordwise) "ediff" "\
  3128. Compare WIND-A and WIND-B, which are selected by clicking, wordwise.
  3129. With prefix argument, DUMB-MODE, or on a non-windowing display, works as
  3130. follows:
  3131. If WIND-A is nil, use selected window.
  3132. If WIND-B is nil, use window next to WIND-A." t nil)
  3133.  
  3134. (autoload (quote ediff-windows-linewise) "ediff" "\
  3135. Compare WIND-A and WIND-B, which are selected by clicking, linewise.
  3136. With prefix argument, DUMB-MODE, or on a non-windowing display, works as
  3137. follows:
  3138. If WIND-A is nil, use selected window.
  3139. If WIND-B is nil, use window next to WIND-A." t nil)
  3140.  
  3141. (autoload (quote ediff-regions-wordwise) "ediff" "\
  3142. Run Ediff on a pair of regions in two different buffers.
  3143. Regions (i.e., point and mark) are assumed to be set in advance.
  3144. This function is effective only for relatively small regions, up to 200
  3145. lines. For large regions, use `ediff-regions-linewise'." t nil)
  3146.  
  3147. (autoload (quote ediff-regions-linewise) "ediff" "\
  3148. Run Ediff on a pair of regions in two different buffers.
  3149. Regions (i.e., point and mark) are assumed to be set in advance.
  3150. Each region is enlarged to contain full lines.
  3151. This function is effective for large regions, over 100-200
  3152. lines. For small regions, use `ediff-regions-wordwise'." t nil)
  3153.  
  3154. (defalias (quote ediff-merge) (quote ediff-merge-files))
  3155.  
  3156. (autoload (quote ediff-merge-files) "ediff" "\
  3157. Merge two files without ancestor." t nil)
  3158.  
  3159. (autoload (quote ediff-merge-files-with-ancestor) "ediff" "\
  3160. Merge two files with ancestor." t nil)
  3161.  
  3162. (defalias (quote ediff-merge-with-ancestor) (quote ediff-merge-files-with-ancestor))
  3163.  
  3164. (autoload (quote ediff-merge-buffers) "ediff" "\
  3165. Merge buffers without ancestor." t nil)
  3166.  
  3167. (autoload (quote ediff-merge-buffers-with-ancestor) "ediff" "\
  3168. Merge buffers with ancestor." t nil)
  3169.  
  3170. (autoload (quote ediff-merge-revisions) "ediff" "\
  3171. Run Ediff by merging two revisions of a file.
  3172. The file is the optional FILE argument or the file visited by the current
  3173. buffer." t nil)
  3174.  
  3175. (autoload (quote ediff-merge-revisions-with-ancestor) "ediff" "\
  3176. Run Ediff by merging two revisions of a file with a common ancestor.
  3177. The file is the the optional FILE argument or the file visited by the current
  3178. buffer." t nil)
  3179.  
  3180. (autoload (quote run-ediff-from-cvs-buffer) "ediff" "\
  3181. Run Ediff-merge on appropriate revisions of the selected file.
  3182. First run after `M-x cvs-update'. Then place the cursor on a lide describing a
  3183. file and then run `run-ediff-from-cvs-buffer'." t nil)
  3184.  
  3185. (autoload (quote ediff-patch-file) "ediff" "\
  3186. Run Ediff by patching SOURCE-FILENAME." t nil)
  3187.  
  3188. (autoload (quote ediff-patch-buffer) "ediff" "\
  3189. Run Ediff by patching BUFFER-NAME." t nil)
  3190.  
  3191. (defalias (quote epatch) (quote ediff-patch-file))
  3192.  
  3193. (defalias (quote epatch-buffer) (quote ediff-patch-buffer))
  3194.  
  3195. (autoload (quote ediff-revision) "ediff" "\
  3196. Run Ediff by comparing versions of a file.
  3197. The file is an optional FILE argument or the file visited by the current
  3198. buffer. Use `vc.el' or `rcs.el' depending on `ediff-version-control-package'." t nil)
  3199.  
  3200. (autoload (quote ediff-version) "ediff" "\
  3201. Return string describing the version of Ediff.
  3202. When called interactively, displays the version." t nil)
  3203.  
  3204. (autoload (quote ediff-documentation) "ediff" "\
  3205. Display Ediff's manual." t nil)
  3206.  
  3207. ;;;***
  3208.  
  3209. ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff-mult.el" (12747 21069))
  3210. ;;; Generated autoloads from ediff-mult.el
  3211.  
  3212. (autoload (quote ediff-show-registry) "ediff-mult" "\
  3213. Display Ediff's registry." t nil)
  3214.  
  3215. (defalias (quote eregistry) (quote ediff-show-registry))
  3216.  
  3217. ;;;***
  3218.  
  3219. ;;;### (autoloads (insert-kbd-macro format-kbd-macro read-kbd-macro edit-named-kbd-macro edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" (12561 43913))
  3220. ;;; Generated autoloads from edmacro.el
  3221.  (define-key ctl-x-map "\C-k" 'edit-kbd-macro)
  3222.  
  3223. (defvar edmacro-eight-bits nil "\
  3224. *Non-nil if edit-kbd-macro should leave 8-bit characters intact.
  3225. Default nil means to write characters above \\177 in octal notation.")
  3226.  
  3227. (autoload (quote edit-kbd-macro) "edmacro" "\
  3228. Edit a keyboard macro.
  3229. At the prompt, type any key sequence which is bound to a keyboard macro.
  3230. Or, type `C-x e' or RET to edit the last keyboard macro, `C-h l' to edit
  3231. the last 100 keystrokes as a keyboard macro, or `M-x' to edit a macro by
  3232. its command name.
  3233. With a prefix argument, format the macro in a more concise way." t nil)
  3234.  
  3235. (autoload (quote edit-last-kbd-macro) "edmacro" "\
  3236. Edit the most recently defined keyboard macro." t nil)
  3237.  
  3238. (autoload (quote edit-named-kbd-macro) "edmacro" "\
  3239. Edit a keyboard macro which has been given a name by `name-last-kbd-macro'." t nil)
  3240.  
  3241. (autoload (quote read-kbd-macro) "edmacro" "\
  3242. Read the region as a keyboard macro definition.
  3243. The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\".
  3244. See documentation for `edmacro-mode' for details.
  3245. Leading/trailing \"C-x (\" and \"C-x )\" in the text are allowed and ignored.
  3246. The resulting macro is installed as the \"current\" keyboard macro.
  3247.  
  3248. In Lisp, may also be called with a single STRING argument in which case
  3249. the result is returned rather than being installed as the current macro.
  3250. The result will be a string if possible, otherwise an event vector.
  3251. Second argument NEED-VECTOR means to return an event vector always." t nil)
  3252.  
  3253. (autoload (quote format-kbd-macro) "edmacro" "\
  3254. Return the keyboard macro MACRO as a human-readable string.
  3255. This string is suitable for passing to `read-kbd-macro'.
  3256. Second argument VERBOSE means to put one command per line with comments.
  3257. If VERBOSE is `1', put everything on one line.  If VERBOSE is omitted
  3258. or nil, use a compact 80-column format." nil nil)
  3259.  
  3260. (autoload (quote insert-kbd-macro) "edmacro" "\
  3261. Insert in buffer the definition of kbd macro NAME, as Lisp code.
  3262. Optional second arg KEYS means also record the keys it is on
  3263. \(this is the prefix argument, when calling interactively).
  3264.  
  3265. This Lisp code will, when executed, define the kbd macro with the same
  3266. definition it has now.  If you say to record the keys, the Lisp code
  3267. will also rebind those keys to the macro.  Only global key bindings
  3268. are recorded since executing this Lisp code always makes global
  3269. bindings.
  3270.  
  3271. To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
  3272. use this command, and then save the file." t nil)
  3273.  
  3274. ;;;***
  3275.  
  3276. ;;;### (autoloads (edt-emulation-on) "edt" "edt.el" (12550 52800))
  3277. ;;; Generated autoloads from edt.el
  3278.  
  3279. (autoload (quote edt-emulation-on) "edt" "\
  3280. Turn on EDT Emulation." t nil)
  3281.  
  3282. ;;;***
  3283.  
  3284. ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "ehelp.el" (12719 4369))
  3285. ;;; Generated autoloads from ehelp.el
  3286.  
  3287. (autoload (quote with-electric-help) "ehelp" "\
  3288. Pop up an \"electric\" help buffer.
  3289. The arguments are THUNK &optional BUFFER NOERASE MINHEIGHT.
  3290. THUNK is a function of no arguments which is called to initialize the
  3291. contents of BUFFER.  BUFFER defaults to `*Help*'.  BUFFER will be
  3292. erased before THUNK is called unless NOERASE is non-nil.  THUNK will
  3293. be called while BUFFER is current and with `standard-output' bound to
  3294. the buffer specified by BUFFER.
  3295.  
  3296. If THUNK returns nil, we display BUFFER starting at the top, and
  3297. shrink the window to fit.  If THUNK returns non-nil, we don't do those things.
  3298.  
  3299. After THUNK has been called, this function \"electrically\" pops up a window
  3300. in which BUFFER is displayed and allows the user to scroll through that buffer
  3301. in electric-help-mode. The window's height will be at least MINHEIGHT if
  3302. this value is non-nil.
  3303.  
  3304. If THUNK returns nil, we display BUFFER starting at the top, and
  3305. shrink the window to fit.  If THUNK returns non-nil, we don't do those
  3306. things.
  3307.  
  3308. When the user exits (with `electric-help-exit', or otherwise) the help
  3309. buffer's window disappears (i.e., we use `save-window-excursion')
  3310. BUFFER is put into `default-major-mode' (or `fundamental-mode') when we exit." nil nil)
  3311.  
  3312. (autoload (quote electric-helpify) "ehelp" nil nil nil)
  3313.  
  3314. ;;;***
  3315.  
  3316. ;;;### (autoloads (elp-submit-bug-report elp-results elp-instrument-package elp-instrument-list elp-restore-function elp-instrument-function) "elp" "elp.el" (12626 46701))
  3317. ;;; Generated autoloads from elp.el
  3318.  
  3319. (autoload (quote elp-instrument-function) "elp" "\
  3320. Instrument FUNSYM for profiling.
  3321. FUNSYM must be a symbol of a defined function." t nil)
  3322.  
  3323. (autoload (quote elp-restore-function) "elp" "\
  3324. Restore an instrumented function to its original definition.
  3325. Argument FUNSYM is the symbol of a defined function." t nil)
  3326.  
  3327. (autoload (quote elp-instrument-list) "elp" "\
  3328. Instrument for profiling, all functions in `elp-function-list'.
  3329. Use optional LIST if provided instead." t nil)
  3330.  
  3331. (autoload (quote elp-instrument-package) "elp" "\
  3332. Instrument for profiling, all functions which start with PREFIX.
  3333. For example, to instrument all ELP functions, do the following:
  3334.  
  3335.     \\[elp-instrument-package] RET elp- RET" t nil)
  3336.  
  3337. (autoload (quote elp-results) "elp" "\
  3338. Display current profiling results.
  3339. If `elp-reset-after-results' is non-nil, then current profiling
  3340. information for all instrumented functions are reset after results are
  3341. displayed." t nil)
  3342.  
  3343. (autoload (quote elp-submit-bug-report) "elp" "\
  3344. Submit via mail, a bug report on elp." t nil)
  3345.  
  3346. ;;;***
  3347.  
  3348. ;;;### (autoloads (report-emacs-bug) "emacsbug" "emacsbug.el" (12620 12311))
  3349. ;;; Generated autoloads from emacsbug.el
  3350.  
  3351. (autoload (quote report-emacs-bug) "emacsbug" "\
  3352. Report a bug in GNU Emacs.
  3353. Prompts for bug subject.  Leaves you in a mail buffer." t nil)
  3354.  
  3355. ;;;***
  3356.  
  3357. ;;;### (autoloads (emerge-merge-directories emerge-revisions-with-ancestor emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor emerge-buffers emerge-files-with-ancestor emerge-files) "emerge" "emerge.el" (12798 27204))
  3358. ;;; Generated autoloads from emerge.el
  3359.  
  3360. (defvar menu-bar-emerge-menu (make-sparse-keymap "Emerge"))
  3361.  
  3362. (fset (quote menu-bar-emerge-menu) (symbol-value (quote menu-bar-emerge-menu)))
  3363.  
  3364. (define-key menu-bar-emerge-menu [emerge-merge-directories] (quote ("Merge Directories..." . emerge-merge-directories)))
  3365.  
  3366. (define-key menu-bar-emerge-menu [emerge-revisions-with-ancestor] (quote ("Revisions with Ancestor..." . emerge-revisions-with-ancestor)))
  3367.  
  3368. (define-key menu-bar-emerge-menu [emerge-revisions] (quote ("Revisions..." . emerge-revisions)))
  3369.  
  3370. (define-key menu-bar-emerge-menu [emerge-files-with-ancestor] (quote ("Files with Ancestor..." . emerge-files-with-ancestor)))
  3371.  
  3372. (define-key menu-bar-emerge-menu [emerge-files] (quote ("Files..." . emerge-files)))
  3373.  
  3374. (define-key menu-bar-emerge-menu [emerge-buffers-with-ancestor] (quote ("Buffers with Ancestor..." . emerge-buffers-with-ancestor)))
  3375.  
  3376. (define-key menu-bar-emerge-menu [emerge-buffers] (quote ("Buffers..." . emerge-buffers)))
  3377.  
  3378. (autoload (quote emerge-files) "emerge" "\
  3379. Run Emerge on two files." t nil)
  3380.  
  3381. (autoload (quote emerge-files-with-ancestor) "emerge" "\
  3382. Run Emerge on two files, giving another file as the ancestor." t nil)
  3383.  
  3384. (autoload (quote emerge-buffers) "emerge" "\
  3385. Run Emerge on two buffers." t nil)
  3386.  
  3387. (autoload (quote emerge-buffers-with-ancestor) "emerge" "\
  3388. Run Emerge on two buffers, giving another buffer as the ancestor." t nil)
  3389.  
  3390. (autoload (quote emerge-files-command) "emerge" nil nil nil)
  3391.  
  3392. (autoload (quote emerge-files-with-ancestor-command) "emerge" nil nil nil)
  3393.  
  3394. (autoload (quote emerge-files-remote) "emerge" nil nil nil)
  3395.  
  3396. (autoload (quote emerge-files-with-ancestor-remote) "emerge" nil nil nil)
  3397.  
  3398. (autoload (quote emerge-revisions) "emerge" "\
  3399. Emerge two RCS revisions of a file." t nil)
  3400.  
  3401. (autoload (quote emerge-revisions-with-ancestor) "emerge" "\
  3402. Emerge two RCS revisions of a file, with another revision as ancestor." t nil)
  3403.  
  3404. (autoload (quote emerge-merge-directories) "emerge" nil t nil)
  3405.  
  3406. ;;;***
  3407.  
  3408. ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) "enriched" "enriched.el" (12697 61530))
  3409. ;;; Generated autoloads from enriched.el
  3410.  
  3411. (autoload (quote enriched-mode) "enriched" "\
  3412. Minor mode for editing text/enriched files.
  3413. These are files with embedded formatting information in the MIME standard
  3414. text/enriched format.
  3415. Turning the mode on runs `enriched-mode-hook'.
  3416.  
  3417. More information about Enriched mode is available in the file 
  3418. etc/enriched.doc  in the Emacs distribution directory.
  3419.  
  3420. Commands:
  3421.  
  3422. \\<enriched-mode-map>\\{enriched-mode-map}" t nil)
  3423.  
  3424. (autoload (quote enriched-encode) "enriched" nil nil nil)
  3425.  
  3426. (autoload (quote enriched-decode) "enriched" nil nil nil)
  3427.  
  3428. ;;;***
  3429.  
  3430. ;;;### (autoloads (setenv) "env" "env.el" (12536 45574))
  3431. ;;; Generated autoloads from env.el
  3432.  
  3433. (autoload (quote setenv) "env" "\
  3434. Set the value of the environment variable named VARIABLE to VALUE.
  3435. VARIABLE should be a string.  VALUE is optional; if not provided or is
  3436. `nil', the environment variable VARIABLE will be removed.
  3437.  
  3438. Interactively, a prefix argument means to unset the variable.
  3439. Interactively, the current value (if any) of the variable
  3440. appears at the front of the history list when you type in the new value.
  3441.  
  3442. This function works by modifying `process-environment'." t nil)
  3443.  
  3444. ;;;***
  3445.  
  3446. ;;;### (autoloads (complete-tag select-tags-table tags-apropos list-tags tags-query-replace tags-search tags-loop-continue next-file find-tag-regexp find-tag-other-frame find-tag-other-window find-tag find-tag-noselect tags-table-files visit-tags-table) "etags" "etags.el" (12789 21264))
  3447. ;;; Generated autoloads from etags.el
  3448.  
  3449. (defvar tags-file-name nil "\
  3450. *File name of tags table.
  3451. To switch to a new tags table, setting this variable is sufficient.
  3452. If you set this variable, do not also set `tags-table-list'.
  3453. Use the `etags' program to make a tags table file.")
  3454.  (put 'tags-file-name 'variable-interactive "fVisit tags table: ")
  3455.  
  3456. (defvar tags-table-list nil "\
  3457. *List of file names of tags tables to search.
  3458. An element that is a directory means the file \"TAGS\" in that directory.
  3459. To switch to a new list of tags tables, setting this variable is sufficient.
  3460. If you set this variable, do not also set `tags-file-name'.
  3461. Use the `etags' program to make a tags table file.")
  3462.  
  3463. (defvar tags-add-tables (quote ask-user) "\
  3464. *Control whether to add a new tags table to the current list.
  3465. t means do; nil means don't (always start a new list).
  3466. Any other value means ask the user whether to add a new tags table
  3467. to the current list (as opposed to starting a new list).")
  3468.  
  3469. (defvar find-tag-hook nil "\
  3470. *Hook to be run by \\[find-tag] after finding a tag.  See `run-hooks'.
  3471. The value in the buffer in which \\[find-tag] is done is used,
  3472. not the value in the buffer \\[find-tag] goes to.")
  3473.  
  3474. (defvar find-tag-default-function nil "\
  3475. *A function of no arguments used by \\[find-tag] to pick a default tag.
  3476. If nil, and the symbol that is the value of `major-mode'
  3477. has a `find-tag-default-function' property (see `put'), that is used.
  3478. Otherwise, `find-tag-default' is used.")
  3479.  
  3480. (autoload (quote visit-tags-table) "etags" "\
  3481. Tell tags commands to use tags table file FILE.
  3482. FILE should be the name of a file created with the `etags' program.
  3483. A directory name is ok too; it means file TAGS in that directory.
  3484.  
  3485. Normally \\[visit-tags-table] sets the global value of `tags-file-name'.
  3486. With a prefix arg, set the buffer-local value instead.
  3487. When you find a tag with \\[find-tag], the buffer it finds the tag
  3488. in is given a local value of this variable which is the name of the tags
  3489. file the tag was in." t nil)
  3490.  
  3491. (autoload (quote tags-table-files) "etags" "\
  3492. Return a list of files in the current tags table.
  3493. Assumes the tags table is the current buffer.  The file names are returned
  3494. as they appeared in the `etags' command that created the table, usually
  3495. without directory names." nil nil)
  3496.  
  3497. (autoload (quote find-tag-noselect) "etags" "\
  3498. Find tag (in current tags table) whose name contains TAGNAME.
  3499. Returns the buffer containing the tag's definition and moves its point there,
  3500. but does not select the buffer.
  3501. The default for TAGNAME is the expression in the buffer near point.
  3502.  
  3503. If second arg NEXT-P is t (interactively, with prefix arg), search for
  3504. another tag that matches the last tagname or regexp used.  When there are
  3505. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  3506. is the atom `-' (interactively, with prefix arg that is a negative number
  3507. or just \\[negative-argument]), pop back to the previous tag gone to.
  3508.  
  3509. If third arg REGEXP-P is non-nil, treat TAGNAME as a regexp.
  3510.  
  3511. See documentation of variable `tags-file-name'." t nil)
  3512.  
  3513. (autoload (quote find-tag) "etags" "\
  3514. Find tag (in current tags table) whose name contains TAGNAME.
  3515. Select the buffer containing the tag's definition, and move point there.
  3516. The default for TAGNAME is the expression in the buffer around or before point.
  3517.  
  3518. If second arg NEXT-P is t (interactively, with prefix arg), search for
  3519. another tag that matches the last tagname or regexp used.  When there are
  3520. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  3521. is the atom `-' (interactively, with prefix arg that is a negative number
  3522. or just \\[negative-argument]), pop back to the previous tag gone to.
  3523.  
  3524. See documentation of variable `tags-file-name'." t nil)
  3525.  (define-key esc-map "." 'find-tag)
  3526.  
  3527. (autoload (quote find-tag-other-window) "etags" "\
  3528. Find tag (in current tags table) whose name contains TAGNAME.
  3529. Select the buffer containing the tag's definition in another window, and
  3530. move point there.  The default for TAGNAME is the expression in the buffer
  3531. around or before point.
  3532.  
  3533. If second arg NEXT-P is t (interactively, with prefix arg), search for
  3534. another tag that matches the last tagname or regexp used.  When there are
  3535. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  3536. is negative (interactively, with prefix arg that is a negative number or
  3537. just \\[negative-argument]), pop back to the previous tag gone to.
  3538.  
  3539. See documentation of variable `tags-file-name'." t nil)
  3540.  (define-key ctl-x-4-map "." 'find-tag-other-window)
  3541.  
  3542. (autoload (quote find-tag-other-frame) "etags" "\
  3543. Find tag (in current tags table) whose name contains TAGNAME.
  3544. Select the buffer containing the tag's definition in another frame, and
  3545. move point there.  The default for TAGNAME is the expression in the buffer
  3546. around or before point.
  3547.  
  3548. If second arg NEXT-P is t (interactively, with prefix arg), search for
  3549. another tag that matches the last tagname or regexp used.  When there are
  3550. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  3551. is negative (interactively, with prefix arg that is a negative number or
  3552. just \\[negative-argument]), pop back to the previous tag gone to.
  3553.  
  3554. See documentation of variable `tags-file-name'." t nil)
  3555.  (define-key ctl-x-5-map "." 'find-tag-other-frame)
  3556.  
  3557. (autoload (quote find-tag-regexp) "etags" "\
  3558. Find tag (in current tags table) whose name matches REGEXP.
  3559. Select the buffer containing the tag's definition and move point there.
  3560.  
  3561. If second arg NEXT-P is t (interactively, with prefix arg), search for
  3562. another tag that matches the last tagname or regexp used.  When there are
  3563. multiple matches for a tag, more exact matches are found first.  If NEXT-P
  3564. is negative (interactively, with prefix arg that is a negative number or
  3565. just \\[negative-argument]), pop back to the previous tag gone to.
  3566.  
  3567. If third arg OTHER-WINDOW is non-nil, select the buffer in another window.
  3568.  
  3569. See documentation of variable `tags-file-name'." t nil)
  3570.  (define-key esc-map [?\C-.] 'find-tag-regexp)
  3571.  
  3572. (autoload (quote next-file) "etags" "\
  3573. Select next file among files in current tags table.
  3574.  
  3575. A first argument of t (prefix arg, if interactive) initializes to the
  3576. beginning of the list of files in the tags table.  If the argument is
  3577. neither nil nor t, it is evalled to initialize the list of files.
  3578.  
  3579. Non-nil second argument NOVISIT means use a temporary buffer
  3580.  to save time and avoid uninteresting warnings.
  3581.  
  3582. Value is nil if the file was already visited;
  3583. if the file was newly read in, the value is the filename." t nil)
  3584.  
  3585. (autoload (quote tags-loop-continue) "etags" "\
  3586. Continue last \\[tags-search] or \\[tags-query-replace] command.
  3587. Used noninteractively with non-nil argument to begin such a command (the
  3588. argument is passed to `next-file', which see).
  3589.  
  3590. Two variables control the processing we do on each file: the value of
  3591. `tags-loop-scan' is a form to be executed on each file to see if it is
  3592. interesting (it returns non-nil if so) and `tags-loop-operate' is a form to
  3593. evaluate to operate on an interesting file.  If the latter evaluates to
  3594. nil, we exit; otherwise we scan the next file." t nil)
  3595.  (define-key esc-map "," 'tags-loop-continue)
  3596.  
  3597. (autoload (quote tags-search) "etags" "\
  3598. Search through all files listed in tags table for match for REGEXP.
  3599. Stops when a match is found.
  3600. To continue searching for next match, use command \\[tags-loop-continue].
  3601.  
  3602. See documentation of variable `tags-file-name'." t nil)
  3603.  
  3604. (autoload (quote tags-query-replace) "etags" "\
  3605. Query-replace-regexp FROM with TO through all files listed in tags table.
  3606. Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
  3607. If you exit (\\[keyboard-quit] or ESC), you can resume the query-replace
  3608. with the command \\[tags-loop-continue].
  3609.  
  3610. See documentation of variable `tags-file-name'." t nil)
  3611.  
  3612. (autoload (quote list-tags) "etags" "\
  3613. Display list of tags in file FILE.
  3614. This searches only the first table in the list, and no included tables.
  3615. FILE should be as it appeared in the `etags' command, usually without a
  3616. directory specification." t nil)
  3617.  
  3618. (autoload (quote tags-apropos) "etags" "\
  3619. Display list of all tags in tags table REGEXP matches." t nil)
  3620.  
  3621. (autoload (quote select-tags-table) "etags" "\
  3622. Select a tags table file from a menu of those you have already used.
  3623. The list of tags tables to select from is stored in `tags-table-set-list';
  3624. see the doc of that variable if you want to add names to the list." t nil)
  3625.  
  3626. (autoload (quote complete-tag) "etags" "\
  3627. Perform tags completion on the text around point.
  3628. Completes to the set of names listed in the current tags table.
  3629. The string to complete is chosen in the same way as the default
  3630. for \\[find-tag] (which see)." t nil)
  3631.  (define-key esc-map "\t" 'complete-tag)
  3632.  
  3633. ;;;***
  3634.  
  3635. ;;;### (autoloads (executable-self-display executable-set-magic) "executable" "executable.el" (12786 35238))
  3636. ;;; Generated autoloads from executable.el
  3637.  
  3638. (autoload (quote executable-set-magic) "executable" "\
  3639. Set this buffer's interpreter to INTERPRETER with optional ARGUMENT.
  3640. The variables `executable-magicless-file-regexp', `executable-prefix',
  3641. `executable-insert', `executable-query' and `executable-chmod' control
  3642. when and how magic numbers are inserted or replaced and scripts made
  3643. executable." t nil)
  3644.  
  3645. (autoload (quote executable-self-display) "executable" "\
  3646. Turn a text file into a self-displaying Un*x command.
  3647. The magic number of such a command displays all lines but itself." t nil)
  3648.  
  3649. ;;;***
  3650.  
  3651. ;;;### (autoloads (f90-mode) "f90" "f90.el" (12755 36864))
  3652. ;;; Generated autoloads from f90.el
  3653.  
  3654. (autoload (quote f90-mode) "f90" "\
  3655. Major mode for editing Fortran 90 code in free format.
  3656.  
  3657. \\[f90-indent-new-line] corrects current indentation and creates new indented line.
  3658. \\[f90-indent-line] indents the current line correctly. 
  3659. \\[f90-indent-subprogram] indents the current subprogram. 
  3660.  
  3661. Type `? or `\\[help-command] to display a list of built-in abbrevs for F90 keywords.
  3662.  
  3663. Key definitions:
  3664. \\{f90-mode-map}
  3665.  
  3666. Variables controlling indentation style and extra features:
  3667.  
  3668.  f90-do-indent
  3669.     Extra indentation within do blocks.  (default 3)
  3670.  f90-if-indent
  3671.     Extra indentation within if/select case/where/forall blocks. (default 3)
  3672.  f90-type-indent
  3673.     Extra indentation within type/interface/block-data blocks.  (default 3)
  3674.  f90-program-indent
  3675.     Extra indentation within program/module/subroutine/function blocks.
  3676.       (default 2)
  3677.  f90-continuation-indent
  3678.     Extra indentation applied to continuation lines.  (default 5)
  3679.  f90-comment-region
  3680.     String inserted by \\[f90-comment-region] at start of each line in 
  3681.     region.  (default \"!!!$\")
  3682.  f90-indented-comment-re
  3683.     Regexp determining the type of comment to be intended like code.
  3684.     (default \"!\")
  3685.  f90-directive-comment-re
  3686.     Regexp of comment-like directive like \"!HPF\\\\$\", not to be indented.
  3687.     (default \"!hpf\\\\$\")
  3688.  f90-break-delimiters
  3689.     Regexp holding list of delimiters at which lines may be broken.
  3690.     (default \"[-+*/><=,% \\t]\")
  3691.  f90-break-before-delimiters
  3692.     Non-nil causes `f90-do-auto-fill' to break lines before delimiters.
  3693.     (default t)
  3694.  f90-beginning-ampersand 
  3695.     Automatic insertion of & at beginning of continuation lines. (default t)
  3696.  f90-smart-end 
  3697.     From an END statement, check and fill the end using matching block start.
  3698.     Allowed values are 'blink, 'no-blink, and nil, which determine
  3699.     whether to blink the matching beginning.) (default 'blink)
  3700.  f90-auto-keyword-case
  3701.     Automatic change of case of keywords. (default nil)
  3702.     The possibilities are 'downcase-word, 'upcase-word, 'capitalize-word.
  3703.  f90-leave-line-no
  3704.     Do not left-justify line numbers. (default nil)
  3705.  f90-startup-message
  3706.     Set to nil to inhibit message first time F90 mode is used. (default t)
  3707.  f90-keywords-re
  3708.     List of keywords used for highlighting/upcase-keywords etc.
  3709.  
  3710. Turning on F90 mode calls the value of the variable `f90-mode-hook'
  3711. with no args, if that value is non-nil." t nil)
  3712.  
  3713. ;;;***
  3714.  
  3715. ;;;### (autoloads (list-colors-display facemenu-read-color list-text-properties-at facemenu-remove-special facemenu-remove-all facemenu-remove-props facemenu-set-read-only facemenu-set-intangible facemenu-set-invisible facemenu-set-face-from-menu facemenu-set-background facemenu-set-foreground facemenu-set-face) "facemenu" "facemenu.el" (12728 53123))
  3716. ;;; Generated autoloads from facemenu.el
  3717.  (define-key global-map "\M-g" 'facemenu-keymap)
  3718.  (autoload 'facemenu-keymap "facemenu" "Keymap for face-changing commands." t 'keymap)
  3719.  
  3720. (defvar facemenu-face-menu (let ((map (make-sparse-keymap "Face"))) (define-key map "o" (cons "Other..." (quote facemenu-set-face))) map) "\
  3721. Menu keymap for faces.")
  3722.  
  3723. (defalias (quote facemenu-face-menu) facemenu-face-menu)
  3724.  
  3725. (defvar facemenu-foreground-menu (let ((map (make-sparse-keymap "Foreground Color"))) (define-key map "o" (cons "Other..." (quote facemenu-set-foreground))) map) "\
  3726. Menu keymap for foreground colors.")
  3727.  
  3728. (defalias (quote facemenu-foreground-menu) facemenu-foreground-menu)
  3729.  
  3730. (defvar facemenu-background-menu (let ((map (make-sparse-keymap "Background Color"))) (define-key map "o" (cons "Other..." (quote facemenu-set-background))) map) "\
  3731. Menu keymap for background colors")
  3732.  
  3733. (defalias (quote facemenu-background-menu) facemenu-background-menu)
  3734.  
  3735. (defvar facemenu-special-menu (let ((map (make-sparse-keymap "Special"))) (define-key map [115] (cons "Remove Special" (quote facemenu-remove-special))) (define-key map [116] (cons "Intangible" (quote facemenu-set-intangible))) (define-key map [118] (cons "Invisible" (quote facemenu-set-invisible))) (define-key map [114] (cons "Read-Only" (quote facemenu-set-read-only))) map) "\
  3736. Menu keymap for non-face text-properties.")
  3737.  
  3738. (defalias (quote facemenu-special-menu) facemenu-special-menu)
  3739.  
  3740. (defvar facemenu-justification-menu (let ((map (make-sparse-keymap "Justification"))) (define-key map [99] (cons "Center" (quote set-justification-center))) (define-key map [98] (cons "Full" (quote set-justification-full))) (define-key map [114] (cons "Right" (quote set-justification-right))) (define-key map [108] (cons "Left" (quote set-justification-left))) (define-key map [117] (cons "Unfilled" (quote set-justification-none))) map) "\
  3741. Submenu for text justification commands.")
  3742.  
  3743. (defalias (quote facemenu-justification-menu) facemenu-justification-menu)
  3744.  
  3745. (defvar facemenu-indentation-menu (let ((map (make-sparse-keymap "Indentation"))) (define-key map [decrease-right-margin] (cons "Indent Right Less" (quote decrease-right-margin))) (define-key map [increase-right-margin] (cons "Indent Right More" (quote increase-right-margin))) (define-key map [decrease-left-margin] (cons "Indent Less" (quote decrease-left-margin))) (define-key map [increase-left-margin] (cons "Indent More" (quote increase-left-margin))) map) "\
  3746. Submenu for indentation commands.")
  3747.  
  3748. (defalias (quote facemenu-indentation-menu) facemenu-indentation-menu)
  3749.  
  3750. (defvar facemenu-menu nil "\
  3751. Facemenu top-level menu keymap.")
  3752.  
  3753. (setq facemenu-menu (make-sparse-keymap "Text Properties"))
  3754.  
  3755. (let ((map facemenu-menu)) (define-key map [dc] (cons "Display Colors" (quote list-colors-display))) (define-key map [df] (cons "Display Faces" (quote list-faces-display))) (define-key map [dp] (cons "List Properties" (quote list-text-properties-at))) (define-key map [ra] (cons "Remove All" (quote facemenu-remove-all))) (define-key map [rm] (cons "Remove Properties" (quote facemenu-remove-props))) (define-key map [s1] (list "-----------------")))
  3756.  
  3757. (let ((map facemenu-menu)) (define-key map [in] (cons "Indentation" (quote facemenu-indentation-menu))) (define-key map [ju] (cons "Justification" (quote facemenu-justification-menu))) (define-key map [s2] (list "-----------------")) (define-key map [sp] (cons "Special Properties" (quote facemenu-special-menu))) (define-key map [bg] (cons "Background Color" (quote facemenu-background-menu))) (define-key map [fg] (cons "Foreground Color" (quote facemenu-foreground-menu))) (define-key map [fc] (cons "Face" (quote facemenu-face-menu))))
  3758.  
  3759. (defalias (quote facemenu-menu) facemenu-menu)
  3760.  
  3761. (autoload (quote facemenu-set-face) "facemenu" "\
  3762. Add FACE to the region or next character typed.
  3763. It will be added to the top of the face list; any faces lower on the list that
  3764. will not show through at all will be removed.
  3765.  
  3766. Interactively, the face to be used is read with the minibuffer.
  3767.  
  3768. If the region is active and there is no prefix argument,
  3769. this command sets the region to the requested face.
  3770.  
  3771. Otherwise, this command specifies the face for the next character
  3772. inserted.  Moving point or switching buffers before
  3773. typing a character to insert cancels the specification." t nil)
  3774.  
  3775. (autoload (quote facemenu-set-foreground) "facemenu" "\
  3776. Set the foreground color of the region or next character typed.
  3777. The color is prompted for.  A face named `fg:color' is used (or created).
  3778. If the region is active, it will be set to the requested face.  If
  3779. it is inactive (even if mark-even-if-inactive is set) the next
  3780. character that is typed (via `self-insert-command') will be set to
  3781. the selected face.  Moving point or switching buffers before
  3782. typing a character cancels the request." t nil)
  3783.  
  3784. (autoload (quote facemenu-set-background) "facemenu" "\
  3785. Set the background color of the region or next character typed.
  3786. The color is prompted for.  A face named `bg:color' is used (or created).
  3787. If the region is active, it will be set to the requested face.  If
  3788. it is inactive (even if mark-even-if-inactive is set) the next
  3789. character that is typed (via `self-insert-command') will be set to
  3790. the selected face.  Moving point or switching buffers before
  3791. typing a character cancels the request." t nil)
  3792.  
  3793. (autoload (quote facemenu-set-face-from-menu) "facemenu" "\
  3794. Set the face of the region or next character typed.
  3795. This function is designed to be called from a menu; the face to use
  3796. is the menu item's name.
  3797.  
  3798. If the region is active and there is no prefix argument,
  3799. this command sets the region to the requested face.
  3800.  
  3801. Otherwise, this command specifies the face for the next character
  3802. inserted.  Moving point or switching buffers before
  3803. typing a character to insert cancels the specification." t nil)
  3804.  
  3805. (autoload (quote facemenu-set-invisible) "facemenu" "\
  3806. Make the region invisible.
  3807. This sets the `invisible' text property; it can be undone with
  3808. `facemenu-remove-special'." t nil)
  3809.  
  3810. (autoload (quote facemenu-set-intangible) "facemenu" "\
  3811. Make the region intangible: disallow moving into it.
  3812. This sets the `intangible' text property; it can be undone with
  3813. `facemenu-remove-special'." t nil)
  3814.  
  3815. (autoload (quote facemenu-set-read-only) "facemenu" "\
  3816. Make the region unmodifiable.
  3817. This sets the `read-only' text property; it can be undone with
  3818. `facemenu-remove-special'." t nil)
  3819.  
  3820. (autoload (quote facemenu-remove-props) "facemenu" "\
  3821. Remove all text properties that facemenu added to region." t nil)
  3822.  
  3823. (autoload (quote facemenu-remove-all) "facemenu" "\
  3824. Remove all text properties from the region." t nil)
  3825.  
  3826. (autoload (quote facemenu-remove-special) "facemenu" "\
  3827. Remove all the \"special\" text properties from the region.
  3828. These special properties include `invisible', `intangible' and `read-only'." t nil)
  3829.  
  3830. (autoload (quote list-text-properties-at) "facemenu" "\
  3831. Pop up a buffer listing text-properties at LOCATION." t nil)
  3832.  
  3833. (autoload (quote facemenu-read-color) "facemenu" "\
  3834. Read a color using the minibuffer." nil nil)
  3835.  
  3836. (autoload (quote list-colors-display) "facemenu" "\
  3837. Display names of defined colors, and show what they look like.
  3838. If the optional argument LIST is non-nil, it should be a list of
  3839. colors to display.  Otherwise, this command computes a list
  3840. of colors that the current display can handle." t nil)
  3841.  
  3842. ;;;***
  3843.  
  3844. ;;;### (autoloads (turn-on-fast-lock fast-lock-mode) "fast-lock" "fast-lock.el" (12750 18247))
  3845. ;;; Generated autoloads from fast-lock.el
  3846.  
  3847. (autoload (quote fast-lock-mode) "fast-lock" "\
  3848. Toggle Fast Lock mode.
  3849. With arg, turn Fast Lock mode on if and only if arg is positive and the buffer
  3850. is associated with a file.  Enable it automatically in your `~/.emacs' by:
  3851.  
  3852.  (setq font-lock-support-mode 'fast-lock-mode)
  3853.  
  3854. If Fast Lock mode is enabled, and the current buffer does not contain any text
  3855. properties, any associated Font Lock cache is used if its timestamp matches the
  3856. buffer's file, and its `font-lock-keywords' match those that you are using.
  3857.  
  3858. Font Lock caches may be saved:
  3859.  - When you save the file's buffer.
  3860.  - When you kill an unmodified file's buffer.
  3861.  - When you exit Emacs, for all unmodified or saved buffers.
  3862. Depending on the value of `fast-lock-save-events'.
  3863. See also the commands `fast-lock-read-cache' and `fast-lock-save-cache'.
  3864.  
  3865. Use \\[font-lock-fontify-buffer] to fontify the buffer if the cache is bad.
  3866.  
  3867. Various methods of control are provided for the Font Lock cache.  In general,
  3868. see variable `fast-lock-cache-directories' and function `fast-lock-cache-name'.
  3869. For saving, see variables `fast-lock-minimum-size', `fast-lock-save-events',
  3870. `fast-lock-save-others' and `fast-lock-save-faces'.
  3871.  
  3872. Use \\[fast-lock-submit-bug-report] to send bug reports or feedback." t nil)
  3873.  
  3874. (autoload (quote turn-on-fast-lock) "fast-lock" "\
  3875. Unconditionally turn on Fast Lock mode." nil nil)
  3876.  
  3877. (if (fboundp (quote add-minor-mode)) (add-minor-mode (quote fast-lock-mode) nil))
  3878.  
  3879. ;;;***
  3880.  
  3881. ;;;### (autoloads (ffap-menu find-file-at-point ffap-next) "ffap" "ffap.el" (12629 23035))
  3882. ;;; Generated autoloads from ffap.el
  3883.  
  3884. (autoload (quote ffap-next) "ffap" "\
  3885. Search buffer for next file or url, and run ffap.
  3886. Optional argument BACK says to search backwards.
  3887. Optional argument WRAP says to try wrapping around if necessary.
  3888. Interactively: use a single prefix to search backwards,
  3889. double prefix to wrap forward, triple to wrap backwards.
  3890. Actual search is done by `ffap-next-guess'." t nil)
  3891.  
  3892. (autoload (quote find-file-at-point) "ffap" "\
  3893. Find FILENAME (or url), guessing default from text around point.
  3894. If `ffap-dired-wildcards' is set, wildcard patterns are passed to dired.
  3895. See also the functions `ffap-file-at-point', `ffap-url-at-point'.
  3896. With a prefix, this command behaves *exactly* like `ffap-file-finder'.
  3897. If `ffap-require-prefix' is set, the prefix meaning is reversed.
  3898.  
  3899. See <ftp://ftp.mathcs.emory.edu/pub/mic/emacs/> for latest version." t nil)
  3900.  
  3901. (autoload (quote ffap-menu) "ffap" "\
  3902. Put up a menu of files and urls mentioned in this buffer.
  3903. Then set mark, jump to choice, and try to fetch it.  The menu is
  3904. cached in `ffap-menu-alist', and rebuilt by `ffap-menu-rescan'.
  3905. The optional RESCAN argument (a prefix, interactively) forces
  3906. a rebuild.  Searches with `ffap-menu-regexp'." t nil)
  3907.  
  3908. ;;;***
  3909.  
  3910. ;;;### (autoloads (find-grep-dired find-name-dired find-dired) "find-dired" "find-dired.el" (12536 45574))
  3911. ;;; Generated autoloads from find-dired.el
  3912.  
  3913. (defvar find-ls-option (if (eq system-type (quote berkeley-unix)) (quote ("-ls" . "-gilsb")) (quote ("-exec ls -ld {} \\;" . "-ld"))) "\
  3914. *Description of the option to `find' to produce an `ls -l'-type listing.
  3915. This is a cons of two strings (FIND-OPTION . LS-SWITCHES).  FIND-OPTION
  3916. gives the option (or options) to `find' that produce the desired output.
  3917. LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.")
  3918.  
  3919. (defvar find-grep-options (if (eq system-type (quote berkeley-unix)) "-s" "-q") "\
  3920. *Option to grep to be as silent as possible.
  3921. On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it.
  3922. On other systems, the closest you can come is to use `-l'.")
  3923.  
  3924. (autoload (quote find-dired) "find-dired" "\
  3925. Run `find' and go into dired-mode on a buffer of the output.
  3926. The command run (after changing into DIR) is
  3927.  
  3928.     find . \\( ARGS \\) -ls" t nil)
  3929.  
  3930. (autoload (quote find-name-dired) "find-dired" "\
  3931. Search DIR recursively for files matching the globbing pattern PATTERN,
  3932. and run dired on those files.
  3933. PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted.
  3934. The command run (after changing into DIR) is
  3935.  
  3936.     find . -name 'PATTERN' -ls" t nil)
  3937.  
  3938. (autoload (quote find-grep-dired) "find-dired" "\
  3939. Find files in DIR containing a regexp ARG and start Dired on output.
  3940. The command run (after changing into DIR) is
  3941.  
  3942.     find . -exec grep -s ARG {} \\; -ls
  3943.  
  3944. Thus ARG can also contain additional grep options." t nil)
  3945.  
  3946. ;;;***
  3947.  
  3948. ;;;### (autoloads (ff-find-other-file ff-get-other-file) "find-file" "find-file.el" (12536 45574))
  3949. ;;; Generated autoloads from find-file.el
  3950.  
  3951. (autoload (quote ff-get-other-file) "find-file" "\
  3952. Find the header or source file corresponding to this file.
  3953. See also the documentation for `ff-find-other-file;.
  3954.  
  3955. If optional IN-OTHER-WINDOW is non-nil, find the file in another window." t nil)
  3956.  
  3957. (autoload (quote ff-find-other-file) "find-file" "\
  3958. Find the header or source file corresponding to this file.
  3959. Being on a `#include' line pulls in that file.
  3960.  
  3961. If optional IN-OTHER-WINDOW is non-nil, find the file in the other window.
  3962. If optional IGNORE-INCLUDE is non-nil, ignore being on `#include' lines.
  3963.  
  3964. Variables of interest include:
  3965.  
  3966.  - ff-case-fold-search
  3967.    Non-nil means ignore cases in matches (see case-fold-search).
  3968.    If you have extensions in different cases, you will want this to be nil.
  3969.  
  3970.  - ff-always-in-other-window
  3971.    If non-nil, always open the other file in another window, unless an
  3972.    argument is given to ff-find-other-file.
  3973.  
  3974.  - ff-ignore-include
  3975.    If non-nil, ignores #include lines.
  3976.  
  3977.  - ff-always-try-to-create
  3978.    If non-nil, always attempt to create the other file if it was not found.
  3979.  
  3980.  - ff-quiet-mode
  3981.    If non-nil, traces which directories are being searched.
  3982.  
  3983.  - ff-special-constructs
  3984.    A list of regular expressions specifying how to recognise special
  3985.    constructs such as include files etc, and an associated method for
  3986.    extracting the filename from that construct.
  3987.  
  3988.  - ff-other-file-alist
  3989.    Alist of extensions to find given the current file's extension.
  3990.  
  3991.  - ff-search-directories
  3992.    List of directories searched through with each extension specified in
  3993.    ff-other-file-alist that matches this file's extension.
  3994.  
  3995.  - ff-pre-find-hooks
  3996.    List of functions to be called before the search for the file starts.
  3997.  
  3998.  - ff-pre-load-hooks
  3999.    List of functions to be called before the other file is loaded.
  4000.  
  4001.  - ff-post-load-hooks
  4002.    List of functions to be called after the other file is loaded.
  4003.  
  4004.  - ff-not-found-hooks
  4005.    List of functions to be called if the other file could not be found.
  4006.  
  4007.  - ff-file-created-hooks
  4008.    List of functions to be called if the other file has been created." t nil)
  4009.  
  4010. ;;;***
  4011.  
  4012. ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" "flow-ctrl.el" (12550 53108))
  4013. ;;; Generated autoloads from flow-ctrl.el
  4014.  
  4015. (autoload (quote enable-flow-control) "flow-ctrl" "\
  4016. Toggle flow control handling.
  4017. When handling is enabled, user can type C-s as C-\\, and C-q as C-^.
  4018. With arg, enable flow control mode if arg is positive, otherwise disable." t nil)
  4019.  
  4020. (autoload (quote enable-flow-control-on) "flow-ctrl" "\
  4021. Enable flow control if using one of a specified set of terminal types.
  4022. Use `(enable-flow-control-on \"vt100\" \"h19\")' to enable flow control
  4023. on VT-100 and H19 terminals.  When flow control is enabled,
  4024. you must type C-\\ to get the effect of a C-s, and type C-^
  4025. to get the effect of a C-q." nil nil)
  4026.  
  4027. ;;;***
  4028.  
  4029. ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el" (12653 19749))
  4030. ;;; Generated autoloads from follow.el
  4031.  
  4032. (autoload (quote turn-on-follow-mode) "follow" "\
  4033. Turn on Follow mode. Please see the function `follow-mode'." t nil)
  4034.  
  4035. (autoload (quote turn-off-follow-mode) "follow" "\
  4036. Turn off Follow mode. Please see the function `follow-mode'." t nil)
  4037.  
  4038. (autoload (quote follow-mode) "follow" "\
  4039. Minor mode which combines windows into one tall virtual window.
  4040.  
  4041. The feeling of a \"virtual window\" has been accomplished by the use
  4042. of two major techniques:
  4043.  
  4044. * The windows always displays adjacent sections of the buffer. 
  4045.   This means that whenever one window is moved, all the
  4046.   others will follow.  (Hence the name Follow Mode.)
  4047.  
  4048. * Should the point (cursor) end up outside a window, another 
  4049.   window displaying that point is selected, if possible.  This 
  4050.   makes it possible to walk between windows using normal cursor 
  4051.   movement commands.
  4052.  
  4053. Follow mode comes to its prime when used on a large screen and two
  4054. side-by-side window are used. The user can, with the help of Follow
  4055. mode, use two full-height windows as though they would have been
  4056. one. Imagine yourself editing a large function, or section of text,
  4057. and beeing able to use 144 lines instead of the normal 72... (your
  4058. mileage may vary).
  4059.  
  4060. To split one large window into two side-by-side windows, the commands
  4061. `\\[split-window-horizontally]' or `M-x follow-delete-other-windows-and-split' can be used.
  4062.  
  4063. Only windows displayed in the same frame follow each-other.
  4064.  
  4065. If the variable `follow-intercept-processes' is non-nil, Follow mode
  4066. will listen to the output of processes and redisplay accordingly.
  4067. \(This is the default.)
  4068.  
  4069. When Follow mode is switched on, the hook `follow-mode-hook'
  4070. is called.  When turned off, `follow-mode-off-hook' is called.
  4071.  
  4072. Keys specific to Follow mode:
  4073. \\{follow-mode-map}" t nil)
  4074.  
  4075. (autoload (quote follow-delete-other-windows-and-split) "follow" "\
  4076. Create two side by side windows and enter Follow Mode.
  4077.  
  4078. Execute this command to display as much as possible of the text
  4079. in the selected window.  All other windows, in the current 
  4080. frame, are deleted and the selected window is split in two
  4081. side-by-side windows. Follow Mode is activated, hence the 
  4082. two windows always will display two successive pages.
  4083. \(If one window is moved, the other one will follow.)
  4084.  
  4085. If ARG is positive, the leftmost window is selected.  If it negative,
  4086. the rightmost is selected.  If ARG is nil, the leftmost window is
  4087. selected if the original window is the first one in the frame.
  4088.  
  4089. To bind this command to a hotkey, place the following line
  4090. in your `~/.emacs' file, replacing [f7] by your favourite key:
  4091.     (global-set-key [f7] 'follow-delete-other-windows-and-split)" t nil)
  4092.  
  4093. ;;;***
  4094.  
  4095. ;;;### (autoloads (font-lock-fontify-buffer global-font-lock-mode turn-on-font-lock font-lock-mode) "font-lock" "font-lock.el" (12797 18123))
  4096. ;;; Generated autoloads from font-lock.el
  4097.  
  4098. (defvar font-lock-maximum-decoration nil "\
  4099. *Maximum decoration level for fontification.
  4100. If nil, use the default decoration (typically the minimum available).
  4101. If t, use the maximum decoration available.
  4102. If a number, use that level of decoration (or if not available the maximum).
  4103. If a list, each element should be a cons pair of the form (MAJOR-MODE . LEVEL),
  4104. where MAJOR-MODE is a symbol or t (meaning the default).  For example:
  4105.  ((c-mode . t) (c++-mode . 2) (t . 1))
  4106. means use the maximum decoration available for buffers in C mode, level 2
  4107. decoration for buffers in C++ mode, and level 1 decoration otherwise.")
  4108.  
  4109. (defvar font-lock-maximum-size (* 250 1024) "\
  4110. *Maximum size of a buffer for buffer fontification.
  4111. Only buffers less than this can be fontified when Font Lock mode is turned on.
  4112. If nil, means size is irrelevant.
  4113. If a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE),
  4114. where MAJOR-MODE is a symbol or t (meaning the default).  For example:
  4115.  ((c-mode . 256000) (c++-mode . 256000) (rmail-mode . 1048576))
  4116. means that the maximum size is 250K for buffers in C or C++ modes, one megabyte
  4117. for buffers in Rmail mode, and size is irrelevant otherwise.")
  4118.  
  4119. (defvar font-lock-mode-hook nil "\
  4120. Function or functions to run on entry to Font Lock mode.")
  4121.  
  4122. (autoload (quote font-lock-mode) "font-lock" "\
  4123. Toggle Font Lock mode.
  4124. With arg, turn Font Lock mode on if and only if arg is positive.
  4125.  
  4126. When Font Lock mode is enabled, text is fontified as you type it:
  4127.  
  4128.  - Comments are displayed in `font-lock-comment-face';
  4129.  - Strings are displayed in `font-lock-string-face';
  4130.  - Certain other expressions are displayed in other faces according to the
  4131.    value of the variable `font-lock-keywords'.
  4132.  
  4133. You can enable Font Lock mode in any major mode automatically by turning on in
  4134. the major mode's hook.  For example, put in your ~/.emacs:
  4135.  
  4136.  (add-hook 'c-mode-hook 'turn-on-font-lock)
  4137.  
  4138. Alternatively, you can use Global Font Lock mode to automagically turn on Font
  4139. Lock mode in buffers whose major mode supports it and whose major mode is one
  4140. of `font-lock-global-modes'.  For example, put in your ~/.emacs:
  4141.  
  4142.  (global-font-lock-mode t)
  4143.  
  4144. There are a number of support modes that may be used to speed up Font Lock mode
  4145. in various ways, specified via the variable `font-lock-support-mode'.  Where
  4146. major modes support different levels of fontification, you can use the variable
  4147. `font-lock-maximum-decoration' to specify which level you generally prefer.
  4148. When you turn Font Lock mode on/off the buffer is fontified/defontified, though
  4149. fontification occurs only if the buffer is less than `font-lock-maximum-size'.
  4150.  
  4151. For example, to specify that Font Lock mode use use Lazy Lock mode as a support
  4152. mode and use maximum levels of fontification, put in your ~/.emacs:
  4153.  
  4154.  (setq font-lock-support-mode 'lazy-lock-mode)
  4155.  (setq font-lock-maximum-decoration t)
  4156.  
  4157. To fontify a buffer, without turning on Font Lock mode and regardless of buffer
  4158. size, you can use \\[font-lock-fontify-buffer].
  4159.  
  4160. To fontify a block (the function or paragraph containing point, or a number of
  4161. lines around point), perhaps because modification on the current line caused
  4162. syntactic change on other lines, you can use \\[font-lock-fontify-block].
  4163.  
  4164. The default Font Lock mode faces and their attributes are defined in the
  4165. variable `font-lock-face-attributes', and Font Lock mode default settings in
  4166. the variable `font-lock-defaults-alist'.  You can set your own default settings
  4167. for some mode, by setting a buffer local value for `font-lock-defaults', via
  4168. its mode hook." t nil)
  4169.  
  4170. (autoload (quote turn-on-font-lock) "font-lock" "\
  4171. Turn on Font Lock mode conditionally.
  4172. Turn on only if the terminal can display it." nil nil)
  4173.  
  4174. (defvar font-lock-global-modes t "\
  4175. *Modes for which Font Lock mode is automagically turned on.
  4176. Global Font Lock mode is controlled by the `global-font-lock-mode' command.
  4177. If nil, means no modes have Font Lock mode automatically turned on.
  4178. If t, all modes that support Font Lock mode have it automatically turned on.
  4179. If a list, it should be a list of `major-mode' symbol names for which Font Lock
  4180. mode should be automatically turned on.  The sense of the list is negated if it
  4181. begins with `not'.  For example:
  4182.  (c-mode c++-mode)
  4183. means that Font Lock mode is turned on for buffers in C and C++ modes only.")
  4184.  
  4185. (autoload (quote global-font-lock-mode) "font-lock" "\
  4186. Toggle Global Font Lock mode.
  4187. With prefix ARG, turn Global Font Lock mode on if and only if ARG is positive.
  4188. Displays a message saying whether the mode is on or off if MESSAGE is non-nil.
  4189. Returns the new status of Global Font Lock mode (non-nil means on).
  4190.  
  4191. When Global Font Lock mode is enabled, Font Lock mode is automagically
  4192. turned on in a buffer if its major mode is one of `font-lock-global-modes'." t nil)
  4193.  
  4194. (defvar font-lock-support-mode nil "\
  4195. *Support mode for Font Lock mode.
  4196. Support modes speed up Font Lock mode by being choosy about when fontification
  4197. occurs.  Known support modes are Fast Lock mode (symbol `fast-lock-mode') and
  4198. Lazy Lock mode (symbol `lazy-lock-mode').  See those modes for more info.
  4199. If nil, means support for Font Lock mode is never performed.
  4200. If a symbol, use that support mode.
  4201. If a list, each element should be of the form (MAJOR-MODE . SUPPORT-MODE),
  4202. where MAJOR-MODE is a symbol or t (meaning the default).  For example:
  4203.  ((c-mode . fast-lock-mode) (c++-mode . fast-lock-mode) (t . lazy-lock-mode))
  4204. means that Fast Lock mode is used to support Font Lock mode for buffers in C or
  4205. C++ modes, and Lazy Lock mode is used to support Font Lock mode otherwise.
  4206.  
  4207. The value of this variable is used when Font Lock mode is turned on.")
  4208.  
  4209. (autoload (quote font-lock-fontify-buffer) "font-lock" "\
  4210. Fontify the current buffer the way `font-lock-mode' would." t nil)
  4211.  
  4212. ;;;***
  4213.  
  4214. ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) "forms" "forms.el" (12599 26747))
  4215. ;;; Generated autoloads from forms.el
  4216.  
  4217. (autoload (quote forms-mode) "forms" "\
  4218. Major mode to visit files in a field-structured manner using a form.
  4219.  
  4220. Commands:                        Equivalent keys in read-only mode:
  4221.  TAB            forms-next-field          TAB
  4222.  \\C-c TAB       forms-next-field          
  4223.  \\C-c <         forms-first-record         <
  4224.  \\C-c >         forms-last-record          >
  4225.  \\C-c ?         describe-mode              ?
  4226.  \\C-c \\C-k      forms-delete-record
  4227.  \\C-c \\C-q      forms-toggle-read-only     q
  4228.  \\C-c \\C-o      forms-insert-record
  4229.  \\C-c \\C-l      forms-jump-record          l
  4230.  \\C-c \\C-n      forms-next-record          n
  4231.  \\C-c \\C-p      forms-prev-record          p
  4232.  \\C-c \\C-r      forms-search-reverse       r
  4233.  \\C-c \\C-s      forms-search-forward       s
  4234.  \\C-c \\C-x      forms-exit                 x
  4235. " t nil)
  4236.  
  4237. (autoload (quote forms-find-file) "forms" "\
  4238. Visit a file in Forms mode." t nil)
  4239.  
  4240. (autoload (quote forms-find-file-other-window) "forms" "\
  4241. Visit a file in Forms mode in other window." t nil)
  4242.  
  4243. ;;;***
  4244.  
  4245. ;;;### (autoloads (fortran-mode) "fortran" "fortran.el" (12536 45574))
  4246. ;;; Generated autoloads from fortran.el
  4247.  
  4248. (defvar fortran-tab-mode-default nil "\
  4249. *Default tabbing/carriage control style for empty files in Fortran mode.
  4250. A value of t specifies tab-digit style of continuation control.
  4251. A value of nil specifies that continuation lines are marked
  4252. with a character in column 6.")
  4253.  
  4254. (autoload (quote fortran-mode) "fortran" "\
  4255. Major mode for editing Fortran code.
  4256. \\[fortran-indent-line] indents the current Fortran line correctly.
  4257. DO statements must not share a common CONTINUE.
  4258.  
  4259. Type ;? or ;\\[help-command] to display a list of built-in abbrevs for Fortran keywords.
  4260.  
  4261. Key definitions:
  4262. \\{fortran-mode-map}
  4263.  
  4264. Variables controlling indentation style and extra features:
  4265.  
  4266.  comment-start
  4267.     Normally nil in Fortran mode.  If you want to use comments
  4268.     starting with `!', set this to the string \"!\".
  4269.  fortran-do-indent
  4270.     Extra indentation within do blocks.  (default 3)
  4271.  fortran-if-indent
  4272.     Extra indentation within if blocks.  (default 3)
  4273.  fortran-structure-indent
  4274.     Extra indentation within structure, union, map and interface blocks.
  4275.     (default 3)
  4276.  fortran-continuation-indent
  4277.     Extra indentation applied to continuation statements.  (default 5)
  4278.  fortran-comment-line-extra-indent
  4279.     Amount of extra indentation for text within full-line comments. (default 0)
  4280.  fortran-comment-indent-style
  4281.     nil    means don't change indentation of text in full-line comments,
  4282.     fixed  means indent that text at `fortran-comment-line-extra-indent' beyond
  4283.            the value of `fortran-minimum-statement-indent-fixed' (for fixed
  4284.            format continuation style) or `fortran-minimum-statement-indent-tab'
  4285.            (for TAB format continuation style).
  4286.     relative  means indent at `fortran-comment-line-extra-indent' beyond the
  4287.            indentation for a line of code.
  4288.     (default 'fixed)
  4289.  fortran-comment-indent-char
  4290.     Single-character string to be inserted instead of space for
  4291.     full-line comment indentation.  (default \" \")
  4292.  fortran-minimum-statement-indent-fixed
  4293.     Minimum indentation for Fortran statements in fixed format mode. (def.6)
  4294.  fortran-minimum-statement-indent-tab
  4295.     Minimum indentation for Fortran statements in TAB format mode. (default 9)
  4296.  fortran-line-number-indent
  4297.     Maximum indentation for line numbers.  A line number will get
  4298.     less than this much indentation if necessary to avoid reaching
  4299.     column 5.  (default 1)
  4300.  fortran-check-all-num-for-matching-do
  4301.     Non-nil causes all numbered lines to be treated as possible \"continue\"
  4302.     statements.  (default nil)
  4303.  fortran-blink-matching-if
  4304.     Non-nil causes \\[fortran-indent-line] on an ENDIF statement to blink on
  4305.     matching IF.  Also, from an ENDDO statement, blink on matching DO [WHILE]
  4306.     statement.  (default nil)
  4307.  fortran-continuation-string
  4308.     Single-character string to be inserted in column 5 of a continuation
  4309.     line.  (default \"$\")
  4310.  fortran-comment-region
  4311.     String inserted by \\[fortran-comment-region] at start of each line in
  4312.     region.  (default \"c$$$\")
  4313.  fortran-electric-line-number
  4314.     Non-nil causes line number digits to be moved to the correct column
  4315.     as typed.  (default t)
  4316.  fortran-break-before-delimiters
  4317.     Non-nil causes `fortran-fill' breaks lines before delimiters.
  4318.     (default t)
  4319.  fortran-startup-message
  4320.     Set to nil to inhibit message first time Fortran mode is used.
  4321.  
  4322. Turning on Fortran mode calls the value of the variable `fortran-mode-hook'
  4323. with no args, if that value is non-nil." t nil)
  4324.  
  4325. ;;;***
  4326.  
  4327. ;;;### (autoloads (gnus-batch-score gnus-fetch-group gnus gnus-other-frame gnus-slave gnus-no-server gnus-slave-no-server gnus-add-configuration gnus-update-format) "gnus" "gnus.el" (12777 3230))
  4328. ;;; Generated autoloads from gnus.el
  4329.  
  4330. (autoload (quote gnus-update-format) "gnus" "\
  4331. Update the format specification near point." t nil)
  4332.  
  4333. (autoload (quote gnus-add-configuration) "gnus" "\
  4334. Add the window configuration CONF to `gnus-buffer-configuration'." nil nil)
  4335.  
  4336. (autoload (quote gnus-slave-no-server) "gnus" "\
  4337. Read network news as a slave, without connecting to local server" t nil)
  4338.  
  4339. (autoload (quote gnus-no-server) "gnus" "\
  4340. Read network news.
  4341. If ARG is a positive number, Gnus will use that as the
  4342. startup level.    If ARG is nil, Gnus will be started at level 2.
  4343. If ARG is non-nil and not a positive number, Gnus will
  4344. prompt the user for the name of an NNTP server to use.
  4345. As opposed to `gnus', this command will not connect to the local server." t nil)
  4346.  
  4347. (autoload (quote gnus-slave) "gnus" "\
  4348. Read news as a slave." t nil)
  4349.  
  4350. (autoload (quote gnus-other-frame) "gnus" "\
  4351. Pop up a frame to read news." t nil)
  4352.  
  4353. (autoload (quote gnus) "gnus" "\
  4354. Read network news.
  4355. If ARG is non-nil and a positive number, Gnus will use that as the
  4356. startup level.    If ARG is non-nil and not a positive number, Gnus will
  4357. prompt the user for the name of an NNTP server to use." t nil)
  4358.  
  4359. (autoload (quote gnus-fetch-group) "gnus" "\
  4360. Start Gnus if necessary and enter GROUP.
  4361. Returns whether the fetching was successful or not." t nil)
  4362.  
  4363. (defalias (quote gnus-batch-kill) (quote gnus-batch-score))
  4364.  
  4365. (autoload (quote gnus-batch-score) "gnus" "\
  4366. Run batched scoring.
  4367. Usage: emacs -batch -l gnus -f gnus-batch-score <newsgroups> ...
  4368. Newsgroups is a list of strings in Bnews format.  If you want to score
  4369. the comp hierarchy, you'd say \"comp.all\".  If you would not like to
  4370. score the alt hierarchy, you'd say \"!alt.all\"." t nil)
  4371.  
  4372. ;;;***
  4373.  
  4374. ;;;### (autoloads (gnus-cache-generate-nov-databases gnus-cache-generate-active gnus-jog-cache) "gnus-cache" "gnus-cache.el" (12777 3818))
  4375. ;;; Generated autoloads from gnus-cache.el
  4376.  
  4377. (autoload (quote gnus-jog-cache) "gnus-cache" "\
  4378. Go through all groups and put the articles into the cache." t nil)
  4379.  
  4380. (autoload (quote gnus-cache-generate-active) "gnus-cache" "\
  4381. Generate the cache active file." t nil)
  4382.  
  4383. (autoload (quote gnus-cache-generate-nov-databases) "gnus-cache" "\
  4384. Generate NOV files recursively starting in DIR." t nil)
  4385.  
  4386. ;;;***
  4387.  
  4388. ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus-soup.el" (12752 26765))
  4389. ;;; Generated autoloads from gnus-soup.el
  4390.  
  4391. (autoload (quote gnus-batch-brew-soup) "gnus-soup" "\
  4392. Brew a SOUP packet from groups mention on the command line.
  4393. Will use the remaining command line arguments as regular expressions
  4394. for matching on group names.
  4395.  
  4396. For instance, if you want to brew on all the nnml groups, as well as
  4397. groups with \"emacs\" in the name, you could say something like:
  4398.  
  4399. $ emacs -batch -f gnus-batch-brew-soup ^nnml \".*emacs.*\"" t nil)
  4400.  
  4401. ;;;***
  4402.  
  4403. ;;;### (autoloads (gomoku) "gomoku" "gomoku.el" (12645 30348))
  4404. ;;; Generated autoloads from gomoku.el
  4405.  
  4406. (autoload (quote gomoku) "gomoku" "\
  4407. Start a Gomoku game between you and Emacs.
  4408. If a game is in progress, this command allow you to resume it.
  4409. If optional arguments N and M are given, an N by M board is used.
  4410. If prefix arg is given for N, M is prompted for.
  4411.  
  4412. You and Emacs play in turn by marking a free square.  You mark it with X
  4413. and Emacs marks it with O. The winner is the first to get five contiguous
  4414. marks horizontally, vertically or in diagonal.
  4415.  
  4416. You play by moving the cursor over the square you choose and hitting
  4417. \\<gomoku-mode-map>\\[gomoku-human-plays].
  4418. Use \\[describe-mode] for more info." t nil)
  4419.  
  4420. ;;;***
  4421.  
  4422. ;;;### (autoloads (goto-address goto-address-at-point goto-address-at-mouse) "goto-addr" "goto-addr.el" (12755 36278))
  4423. ;;; Generated autoloads from goto-addr.el
  4424.  
  4425. (autoload (quote goto-address-at-mouse) "goto-addr" "\
  4426. Send to the e-mail address or load the URL clicked with the mouse.
  4427. Send mail to address at position of mouse click.  See documentation for
  4428. `goto-address-find-address-at-point'.  If no address is found
  4429. there, then load the URL at or before the position of the mouse click." t nil)
  4430.  
  4431. (autoload (quote goto-address-at-point) "goto-addr" "\
  4432. Send to the e-mail address or load the URL at point.
  4433. Send mail to address at point.  See documentation for
  4434. `goto-address-find-address-at-point'.  If no address is found
  4435. there, then load the URL at or before point." t nil)
  4436.  
  4437. (autoload (quote goto-address) "goto-addr" "\
  4438. Sets up goto-address functionality in the current buffer.
  4439. Allows user to use mouse/keyboard command to click to go to a URL
  4440. or to send e-mail.
  4441. By default, goto-address binds to mouse-2 and C-c RET.
  4442.  
  4443. Also fontifies the buffer appropriately (see `goto-address-fontify-p' and
  4444. `goto-address-highlight-p' for more information)." t nil)
  4445.  
  4446. ;;;***
  4447.  
  4448. ;;;### (autoloads (perldb xdb dbx sdb gdb) "gud" "gud.el" (12801 12634))
  4449. ;;; Generated autoloads from gud.el
  4450.  
  4451. (autoload (quote gdb) "gud" "\
  4452. Run gdb on program FILE in buffer *gud-FILE*.
  4453. The directory containing FILE becomes the initial working directory
  4454. and source-file directory for your debugger." t nil)
  4455.  
  4456. (autoload (quote sdb) "gud" "\
  4457. Run sdb on program FILE in buffer *gud-FILE*.
  4458. The directory containing FILE becomes the initial working directory
  4459. and source-file directory for your debugger." t nil)
  4460.  
  4461. (autoload (quote dbx) "gud" "\
  4462. Run dbx on program FILE in buffer *gud-FILE*.
  4463. The directory containing FILE becomes the initial working directory
  4464. and source-file directory for your debugger." t nil)
  4465.  
  4466. (autoload (quote xdb) "gud" "\
  4467. Run xdb on program FILE in buffer *gud-FILE*.
  4468. The directory containing FILE becomes the initial working directory
  4469. and source-file directory for your debugger.
  4470.  
  4471. You can set the variable 'gud-xdb-directories' to a list of program source
  4472. directories if your program contains sources from more than one directory." t nil)
  4473.  
  4474. (autoload (quote perldb) "gud" "\
  4475. Run perldb on program FILE in buffer *gud-FILE*.
  4476. The directory containing FILE becomes the initial working directory
  4477. and source-file directory for your debugger." t nil)
  4478.  
  4479. ;;;***
  4480.  
  4481. ;;;### (autoloads (hanoi) "hanoi" "hanoi.el" (12579 52103))
  4482. ;;; Generated autoloads from hanoi.el
  4483.  
  4484. (autoload (quote hanoi) "hanoi" "\
  4485. Towers of Hanoi diversion.  Argument is number of rings." t nil)
  4486.  
  4487. ;;;***
  4488.  
  4489. ;;;### (autoloads nil "help-macro" "help-macro.el" (12550 53134))
  4490. ;;; Generated autoloads from help-macro.el
  4491.  
  4492. (defvar three-step-help nil "\
  4493. *Non-nil means give more info about Help command in three steps.
  4494. The three steps are simple prompt, prompt with all options,
  4495. and window listing and describing the options.
  4496. A value of nil means skip the middle step, so that
  4497. \\[help-command] \\[help-command] gives the window that lists the options.")
  4498.  
  4499. ;;;***
  4500.  
  4501. ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" "helper.el" (12536 45574))
  4502. ;;; Generated autoloads from helper.el
  4503.  
  4504. (autoload (quote Helper-describe-bindings) "helper" "\
  4505. Describe local key bindings of current mode." t nil)
  4506.  
  4507. (autoload (quote Helper-help) "helper" "\
  4508. Provide help for current mode." t nil)
  4509.  
  4510. ;;;***
  4511.  
  4512. ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" "hexl.el" (12732 38215))
  4513. ;;; Generated autoloads from hexl.el
  4514.  
  4515. (autoload (quote hexl-mode) "hexl" "\
  4516. \\<hexl-mode-map>
  4517. A major mode for editing binary files in hex dump format.
  4518.  
  4519. This function automatically converts a buffer into the hexl format
  4520. using the function `hexlify-buffer'.
  4521.  
  4522. Each line in the buffer has an \"address\" (displayed in hexadecimal)
  4523. representing the offset into the file that the characters on this line
  4524. are at and 16 characters from the file (displayed as hexadecimal
  4525. values grouped every 16 bits) and as their ASCII values.
  4526.  
  4527. If any of the characters (displayed as ASCII characters) are
  4528. unprintable (control or meta characters) they will be replaced as
  4529. periods.
  4530.  
  4531. If `hexl-mode' is invoked with an argument the buffer is assumed to be
  4532. in hexl format.
  4533.  
  4534. A sample format:
  4535.  
  4536.   HEX ADDR: 0001 0203 0405 0607 0809 0a0b 0c0d 0e0f     ASCII-TEXT
  4537.   --------  ---- ---- ---- ---- ---- ---- ---- ----  ----------------
  4538.   00000000: 5468 6973 2069 7320 6865 786c 2d6d 6f64  This is hexl-mod
  4539.   00000010: 652e 2020 4561 6368 206c 696e 6520 7265  e.  Each line re
  4540.   00000020: 7072 6573 656e 7473 2031 3620 6279 7465  presents 16 byte
  4541.   00000030: 7320 6173 2068 6578 6164 6563 696d 616c  s as hexadecimal
  4542.   00000040: 2041 5343 4949 0a61 6e64 2070 7269 6e74   ASCII.and print
  4543.   00000050: 6162 6c65 2041 5343 4949 2063 6861 7261  able ASCII chara
  4544.   00000060: 6374 6572 732e 2020 416e 7920 636f 6e74  cters.  Any cont
  4545.   00000070: 726f 6c20 6f72 206e 6f6e 2d41 5343 4949  rol or non-ASCII
  4546.   00000080: 2063 6861 7261 6374 6572 730a 6172 6520   characters.are 
  4547.   00000090: 6469 7370 6c61 7965 6420 6173 2070 6572  displayed as per
  4548.   000000a0: 696f 6473 2069 6e20 7468 6520 7072 696e  iods in the prin
  4549.   000000b0: 7461 626c 6520 6368 6172 6163 7465 7220  table character 
  4550.   000000c0: 7265 6769 6f6e 2e0a                      region..
  4551.  
  4552. Movement is as simple as movement in a normal emacs text buffer.  Most
  4553. cursor movement bindings are the same (ie. Use \\[hexl-backward-char], \\[hexl-forward-char], \\[hexl-next-line], and \\[hexl-previous-line]
  4554. to move the cursor left, right, down, and up).
  4555.  
  4556. Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are
  4557. also supported.
  4558.  
  4559. There are several ways to change text in hexl mode:
  4560.  
  4561. ASCII characters (character between space (0x20) and tilde (0x7E)) are
  4562. bound to self-insert so you can simply type the character and it will
  4563. insert itself (actually overstrike) into the buffer.
  4564.  
  4565. \\[hexl-quoted-insert] followed by another keystroke allows you to insert the key even if
  4566. it isn't bound to self-insert.  An octal number can be supplied in place
  4567. of another key to insert the octal number's ASCII representation.
  4568.  
  4569. \\[hexl-insert-hex-char] will insert a given hexadecimal value (if it is between 0 and 0xFF)
  4570. into the buffer at the current point.
  4571.  
  4572. \\[hexl-insert-octal-char] will insert a given octal value (if it is between 0 and 0377)
  4573. into the buffer at the current point.
  4574.  
  4575. \\[hexl-insert-decimal-char] will insert a given decimal value (if it is between 0 and 255)
  4576. into the buffer at the current point.
  4577.  
  4578. \\[hexl-mode-exit] will exit hexl-mode.
  4579.  
  4580. Note: saving the file with any of the usual Emacs commands
  4581. will actually convert it back to binary format while saving.
  4582.  
  4583. You can use \\[hexl-find-file] to visit a file in hexl-mode.
  4584.  
  4585. \\[describe-bindings] for advanced commands." t nil)
  4586.  
  4587. (autoload (quote hexl-find-file) "hexl" "\
  4588. Edit file FILENAME in hexl-mode.
  4589. Switch to a buffer visiting file FILENAME, creating one in none exists." t nil)
  4590.  
  4591. (autoload (quote hexlify-buffer) "hexl" "\
  4592. Convert a binary buffer to hexl format.
  4593. This discards the buffer's undo information." t nil)
  4594.  
  4595. ;;;***
  4596.  
  4597. ;;;### (autoloads (hide-ifdef-mode) "hideif" "hideif.el" (12684 58610))
  4598. ;;; Generated autoloads from hideif.el
  4599.  
  4600. (autoload (quote hide-ifdef-mode) "hideif" "\
  4601. Toggle Hide-Ifdef mode.  This is a minor mode, albeit a large one.
  4602. With ARG, turn Hide-Ifdef mode on if arg is positive, off otherwise.
  4603. In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor
  4604. would eliminate may be hidden from view.  Several variables affect
  4605. how the hiding is done:
  4606.  
  4607. hide-ifdef-env
  4608.     An association list of defined and undefined symbols for the
  4609.     current buffer.  Initially, the global value of `hide-ifdef-env'
  4610.     is used.
  4611.  
  4612. hide-ifdef-define-alist
  4613.     An association list of defined symbol lists.  
  4614.         Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env'
  4615.         and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env'
  4616.         from one of the lists in `hide-ifdef-define-alist'.
  4617.  
  4618. hide-ifdef-lines
  4619.     Set to non-nil to not show #if, #ifdef, #ifndef, #else, and
  4620.     #endif lines when hiding.
  4621.  
  4622. hide-ifdef-initially
  4623.     Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode
  4624.     is activated.
  4625.  
  4626. hide-ifdef-read-only
  4627.     Set to non-nil if you want to make buffers read only while hiding.
  4628.     After `show-ifdefs', read-only status is restored to previous value.
  4629.  
  4630. \\{hide-ifdef-mode-map}" t nil)
  4631.  
  4632. (defvar hide-ifdef-initially nil "\
  4633. *Non-nil means call `hide-ifdefs' when Hide-Ifdef mode is first activated.")
  4634.  
  4635. (defvar hide-ifdef-read-only nil "\
  4636. *Set to non-nil if you want buffer to be read-only while hiding text.")
  4637.  
  4638. (defvar hide-ifdef-lines nil "\
  4639. *Non-nil means hide the #ifX, #else, and #endif lines.")
  4640.  
  4641. ;;;***
  4642.  
  4643. ;;;### (autoloads (hs-minor-mode hs-hide-block hs-hide-all) "hideshow" "hideshow.el" (12599 60349))
  4644. ;;; Generated autoloads from hideshow.el
  4645.  
  4646. (autoload (quote hs-hide-all) "hideshow" "\
  4647. Hides all top-level blocks, displaying only first and last lines.
  4648. It moves point to the beginning of the line, and it runs the normal hook
  4649. `hs-hide-hook'.  See documentation for `run-hooks'." t nil)
  4650.  
  4651. (autoload (quote hs-hide-block) "hideshow" "\
  4652. Selects a block and hides it.  With prefix arg, reposition at end.
  4653. Block is defined as a sexp for lispish modes, mode-specific otherwise.
  4654. Comments are blocks, too.  Upon completion, point is at repositioned and
  4655. the normal hook `hs-hide-hook' is run.  See documentation for `run-hooks'." t nil)
  4656.  
  4657. (autoload (quote hs-minor-mode) "hideshow" "\
  4658. Toggle hideshow minor mode.
  4659. With ARG, turn hideshow minor mode on if ARG is positive, off otherwise.
  4660. When hideshow minor mode is on, the menu bar is augmented with hideshow
  4661. commands and the hideshow commands are enabled.  The variables
  4662. `selective-display' and `selective-display-ellipses' are set to t.
  4663. Last, the normal hook `hs-minor-mode-hook' is run; see the doc for `run-hooks'.
  4664.  
  4665. Turning hideshow minor mode off reverts the menu bar and the
  4666. variables to default values and disables the hideshow commands." t nil)
  4667.  
  4668. ;;;***
  4669.  
  4670. ;;;### (autoloads (make-hippie-expand-function hippie-expand) "hippie-exp" "hippie-exp.el" (12742 55524))
  4671. ;;; Generated autoloads from hippie-exp.el
  4672.  
  4673. (defvar hippie-expand-try-functions-list (quote (try-complete-file-name-partially try-complete-file-name try-expand-all-abbrevs try-expand-list try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-expand-dabbrev-from-kill try-complete-lisp-symbol-partially try-complete-lisp-symbol)) "\
  4674. The list of expansion functions tried in order by `hippie-expand'.
  4675. To change the behavior of `hippie-expand', remove, change the order of,
  4676. or insert functions in this list.")
  4677.  
  4678. (defvar hippie-expand-verbose t "\
  4679. *Non-nil makes `hippie-expand' output which function it is trying.")
  4680.  
  4681. (defvar hippie-expand-max-buffers nil "\
  4682. *The maximum number of buffers (apart from the current) searched.
  4683. If nil, all buffers are searched.")
  4684.  
  4685. (defvar hippie-expand-ignore-buffers (quote ("^ \\*.*\\*$" dired-mode)) "\
  4686. *A list specifying which buffers not to search (if not current).
  4687. Can contain both regexps matching buffer names (as strings) and major modes
  4688. \(as atoms)")
  4689.  
  4690. (autoload (quote hippie-expand) "hippie-exp" "\
  4691. Try to expand text before point, using multiple methods.
  4692. The expansion functions in `hippie-expand-try-functions-list' are
  4693. tried in order, until a possible expansion is found.  Repeated
  4694. application of `hippie-expand' inserts successively possible
  4695. expansions.  
  4696. With a positive numeric argument, jumps directly to the ARG next
  4697. function in this list.  With a negative argument or just \\[universal-argument], 
  4698. undoes the expansion." t nil)
  4699.  
  4700. (autoload (quote make-hippie-expand-function) "hippie-exp" "\
  4701. Construct a function similar to `hippie-expand'.
  4702. Make it use the expansion functions in TRY-LIST.  An optional second
  4703. argument VERBOSE non-nil makes the function verbose." nil (quote macro))
  4704.  
  4705. ;;;***
  4706.  
  4707. ;;;### (autoloads (icomplete-minibuffer-setup icomplete-mode) "icomplete" "icomplete.el" (12716 34325))
  4708. ;;; Generated autoloads from icomplete.el
  4709.  
  4710. (autoload (quote icomplete-mode) "icomplete" "\
  4711. Activate incremental minibuffer completion for this emacs session,
  4712. or deactivate with negative prefix arg." t nil)
  4713.  
  4714. (autoload (quote icomplete-minibuffer-setup) "icomplete" "\
  4715. Run in minibuffer on activation to establish incremental completion.
  4716. Usually run by inclusion in `minibuffer-setup-hook'." nil nil)
  4717.  
  4718. ;;;***
  4719.  
  4720. ;;;### (autoloads (icon-mode) "icon" "icon.el" (12536 45574))
  4721. ;;; Generated autoloads from icon.el
  4722.  
  4723. (autoload (quote icon-mode) "icon" "\
  4724. Major mode for editing Icon code.
  4725. Expression and list commands understand all Icon brackets.
  4726. Tab indents for Icon code.
  4727. Paragraphs are separated by blank lines only.
  4728. Delete converts tabs to spaces as it moves back.
  4729. \\{icon-mode-map}
  4730. Variables controlling indentation style:
  4731.  icon-tab-always-indent
  4732.     Non-nil means TAB in Icon mode should always reindent the current line,
  4733.     regardless of where in the line point is when the TAB command is used.
  4734.  icon-auto-newline
  4735.     Non-nil means automatically newline before and after braces
  4736.     inserted in Icon code.
  4737.  icon-indent-level
  4738.     Indentation of Icon statements within surrounding block.
  4739.     The surrounding block's indentation is the indentation
  4740.     of the line on which the open-brace appears.
  4741.  icon-continued-statement-offset
  4742.     Extra indentation given to a substatement, such as the
  4743.     then-clause of an if or body of a while.
  4744.  icon-continued-brace-offset
  4745.     Extra indentation given to a brace that starts a substatement.
  4746.     This is in addition to `icon-continued-statement-offset'.
  4747.  icon-brace-offset
  4748.     Extra indentation for line if it starts with an open brace.
  4749.  icon-brace-imaginary-offset
  4750.     An open brace following other text is treated as if it were
  4751.     this far to the right of the start of its line.
  4752.  
  4753. Turning on Icon mode calls the value of the variable `icon-mode-hook'
  4754. with no args, if that value is non-nil." t nil)
  4755.  
  4756. ;;;***
  4757.  
  4758. ;;;### (autoloads (ielm) "ielm" "ielm.el" (12536 45574))
  4759. ;;; Generated autoloads from ielm.el
  4760.  (add-hook 'same-window-buffer-names "*ielm*")
  4761.  
  4762. (autoload (quote ielm) "ielm" "\
  4763. Interactively evaluate Emacs Lisp expressions.
  4764. Switches to the buffer `*ielm*', or creates it if it does not exist." t nil)
  4765.  
  4766. ;;;***
  4767.  
  4768. ;;;### (autoloads (imenu imenu-add-to-menubar) "imenu" "imenu.el" (12803 55621))
  4769. ;;; Generated autoloads from imenu.el
  4770.  
  4771. (defvar imenu-generic-expression nil "\
  4772. The regex pattern to use for creating a buffer index.
  4773.  
  4774. If non-nil this pattern is passed to `imenu-create-index-with-pattern'
  4775. to create a buffer index.
  4776.  
  4777. It is an alist with elements that look like this: (MENU-TITLE
  4778. REGEXP INDEX). 
  4779.  
  4780. MENU-TITLE is a string used as the title for the submenu or nil if the
  4781. entries are not nested.
  4782.  
  4783. REGEXP is a regexp that should match a construct in the buffer that is
  4784. to be displayed in the menu; i.e., function or variable definitions,
  4785. etc.  It contains a substring which is the name to appear in the
  4786. menu.  See the info section on Regexps for more information.
  4787.  
  4788. INDEX points to the substring in REGEXP that contains the name (of the
  4789. function, variable or type) that is to appear in the menu.
  4790.  
  4791. For emacs-lisp-mode for example PATTERN would look like:
  4792.  
  4793. '((nil \"^\\\\s-*(def\\\\(un\\\\|subst\\\\|macro\\\\|advice\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2)
  4794.   (\"*Vars*\" \"^\\\\s-*(def\\\\(var\\\\|const\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2)
  4795.   (\"*Types*\" \"^\\\\s-*(def\\\\(type\\\\|struct\\\\|class\\\\|ine-condition\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2))
  4796.  
  4797. The variable is buffer-local.")
  4798.  
  4799. (make-variable-buffer-local (quote imenu-generic-expression))
  4800.  
  4801. (autoload (quote imenu-add-to-menubar) "imenu" "\
  4802. Adds an `imenu' entry to the menu bar for the current buffer.
  4803. NAME is a string used to name the menu bar item.
  4804. See the command `imenu' for more information." t nil)
  4805.  
  4806. (autoload (quote imenu) "imenu" "\
  4807. Jump to a place in the buffer chosen using a buffer menu or mouse menu.
  4808. See `imenu-choose-buffer-index' for more information." t nil)
  4809.  
  4810. ;;;***
  4811.  
  4812. ;;;### (autoloads (inferior-lisp) "inf-lisp" "inf-lisp.el" (12623 7617))
  4813. ;;; Generated autoloads from inf-lisp.el
  4814.  
  4815. (defvar inferior-lisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" "\
  4816. *What not to save on inferior Lisp's input history.
  4817. Input matching this regexp is not saved on the input history in Inferior Lisp
  4818. mode.  Default is whitespace followed by 0 or 1 single-letter colon-keyword 
  4819. \(as in :a, :c, etc.)")
  4820.  
  4821. (defvar inferior-lisp-program "lisp" "\
  4822. *Program name for invoking an inferior Lisp with for Inferior Lisp mode.")
  4823.  
  4824. (defvar inferior-lisp-load-command "(load \"%s\")\n" "\
  4825. *Format-string for building a Lisp expression to load a file.
  4826. This format string should use `%s' to substitute a file name
  4827. and should result in a Lisp expression that will command the inferior Lisp
  4828. to load that file.  The default works acceptably on most Lisps.
  4829. The string \"(progn (load \\\"%s\\\" :verbose nil :print t) (values))\\n\"
  4830. produces cosmetically superior output for this application,
  4831. but it works only in Common Lisp.")
  4832.  
  4833. (defvar inferior-lisp-prompt "^[^> \n]*>+:? *" "\
  4834. Regexp to recognise prompts in the Inferior Lisp mode.
  4835. Defaults to \"^[^> \\n]*>+:? *\", which works pretty good for Lucid, kcl,
  4836. and franz.  This variable is used to initialize `comint-prompt-regexp' in the 
  4837. Inferior Lisp buffer.
  4838.  
  4839. More precise choices:
  4840. Lucid Common Lisp: \"^\\\\(>\\\\|\\\\(->\\\\)+\\\\) *\"
  4841. franz: \"^\\\\(->\\\\|<[0-9]*>:\\\\) *\"
  4842. kcl: \"^>+ *\"
  4843.  
  4844. This is a fine thing to set in your .emacs file.")
  4845.  
  4846. (defvar inferior-lisp-mode-hook (quote nil) "\
  4847. *Hook for customising Inferior Lisp mode.")
  4848.  
  4849. (autoload (quote inferior-lisp) "inf-lisp" "\
  4850. Run an inferior Lisp process, input and output via buffer `*inferior-lisp*'.
  4851. If there is a process already running in `*inferior-lisp*', just switch
  4852. to that buffer.
  4853. With argument, allows you to edit the command line (default is value
  4854. of `inferior-lisp-program').  Runs the hooks from
  4855. `inferior-lisp-mode-hook' (after the `comint-mode-hook' is run).
  4856. \(Type \\[describe-mode] in the process buffer for a list of commands.)" t nil)
  4857.  (add-hook 'same-window-buffer-names "*inferior-lisp*")
  4858.  
  4859. (defalias (quote run-lisp) (quote inferior-lisp))
  4860.  
  4861. ;;;***
  4862.  
  4863. ;;;### (autoloads (Info-goto-emacs-key-command-node Info-goto-emacs-command-node info-standalone info) "info" "info.el" (12810 40350))
  4864. ;;; Generated autoloads from info.el
  4865.  (add-hook 'same-window-buffer-names "*info*")
  4866.  
  4867. (autoload (quote info) "info" "\
  4868. Enter Info, the documentation browser.
  4869. Optional argument FILE specifies the file to examine;
  4870. the default is the top-level directory of Info.
  4871.  
  4872. In interactive use, a prefix argument directs this command
  4873. to read a file name from the minibuffer.
  4874.  
  4875. The search path for Info files is in the variable `Info-directory-list'.
  4876. The top-level Info directory is made by combining all the files named `dir' 
  4877. in all the directories in that path." t nil)
  4878.  
  4879. (autoload (quote info-standalone) "info" "\
  4880. Run Emacs as a standalone Info reader.
  4881. Usage:  emacs -f info-standalone [filename]
  4882. In standalone mode, \\<Info-mode-map>\\[Info-exit] exits Emacs itself." nil nil)
  4883.  
  4884. (autoload (quote Info-goto-emacs-command-node) "info" "\
  4885. Go to the Info node in the Emacs manual for command COMMAND.
  4886. The command is found by looking up in Emacs manual's Command Index
  4887. or in another manual found via COMMAND's `info-file' property or
  4888. the variable `Info-file-list-for-emacs'." t nil)
  4889.  
  4890. (autoload (quote Info-goto-emacs-key-command-node) "info" "\
  4891. Go to the Info node in the Emacs manual the command bound to KEY, a string.
  4892. Interactively, if the binding is execute-extended-command, a command is read.
  4893. The command is found by looking up in Emacs manual's Command Index
  4894. or in another manual found via COMMAND's `info-file' property or
  4895. the variable `Info-file-list-for-emacs'." t nil)
  4896.  
  4897. ;;;***
  4898.  
  4899. ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) "informat" "informat.el" (12536 45574))
  4900. ;;; Generated autoloads from informat.el
  4901.  
  4902. (autoload (quote Info-tagify) "informat" "\
  4903. Create or update Info-file tag table in current buffer." t nil)
  4904.  
  4905. (autoload (quote Info-split) "informat" "\
  4906. Split an info file into an indirect file plus bounded-size subfiles.
  4907. Each subfile will be up to 50,000 characters plus one node.
  4908.  
  4909. To use this command, first visit a large Info file that has a tag
  4910. table.  The buffer is modified into a (small) indirect info file which
  4911. should be saved in place of the original visited file.
  4912.  
  4913. The subfiles are written in the same directory the original file is
  4914. in, with names generated by appending `-' and a number to the original
  4915. file name.  The indirect file still functions as an Info file, but it
  4916. contains just the tag table and a directory of subfiles." t nil)
  4917.  
  4918. (autoload (quote Info-validate) "informat" "\
  4919. Check current buffer for validity as an Info file.
  4920. Check that every node pointer points to an existing node." t nil)
  4921.  
  4922. (autoload (quote batch-info-validate) "informat" "\
  4923. Runs `Info-validate' on the files remaining on the command line.
  4924. Must be used only with -batch, and kills Emacs on completion.
  4925. Each file will be processed even if an error occurred previously.
  4926. For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\"" nil nil)
  4927.  
  4928. ;;;***
  4929.  
  4930. ;;;### (autoloads (iso-accents-mode) "iso-acc" "iso-acc.el" (12810 18245))
  4931. ;;; Generated autoloads from iso-acc.el
  4932.  
  4933. (autoload (quote iso-accents-mode) "iso-acc" "\
  4934. Toggle ISO Accents mode, in which accents modify the following letter.
  4935. This permits easy insertion of accented characters according to ISO-8859-1.
  4936. When Iso-accents mode is enabled, accent character keys
  4937. \(`, ', \", ^, / and ~) do not self-insert; instead, they modify the following
  4938. letter key so that it inserts an ISO accented letter.
  4939.  
  4940. You can customize ISO Accents mode to a particular language
  4941. with the command `iso-accents-customize'.
  4942.  
  4943. Special combinations: ~c gives a c with cedilla,
  4944. ~d gives an Icelandic eth (d with dash).
  4945. ~t gives an Icelandic thorn.
  4946. \"s gives German sharp s.
  4947. /a gives a with ring.
  4948. /e gives an a-e ligature.
  4949. ~< and ~> give guillemots.
  4950. ~! gives an inverted exclamation mark.
  4951. ~? gives an inverted question mark.
  4952.  
  4953. With an argument, a positive argument enables ISO Accents mode, 
  4954. and a negative argument disables it." t nil)
  4955.  
  4956. ;;;***
  4957.  
  4958. ;;;### (autoloads (ispell-message ispell-minor-mode ispell-complete-word-interior-frag ispell-complete-word ispell-continue ispell-buffer ispell-region ispell-change-dictionary ispell-kill-ispell ispell-help ispell-word) "ispell" "ispell.el" (12755 40305))
  4959. ;;; Generated autoloads from ispell.el
  4960.  
  4961. (defvar ispell-personal-dictionary nil "\
  4962. *File name of your personal spelling dictionary, or nil.
  4963. If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used,
  4964. where DICTNAME is the name of your default dictionary.")
  4965.  
  4966. (defvar ispell-dictionary-alist-1 (quote ((nil "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil) ("english" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil) ("british" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B" "-d" "british") nil) ("deutsch" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex") ("deutsch8" "[a-zA-Z─╓▄Σ÷▀ⁿ]" "[^a-zA-Z─╓▄Σ÷▀ⁿ]" "[']" t ("-C" "-d" "deutsch") "~latin1") ("nederlands" "[A-Za-z└-┼╟╚-╧╥-╓┘-▄α-στΦ-∩±≥-÷∙-ⁿ]" "[^A-Za-z└-┼╟╚-╧╥-╓┘-▄α-στΦ-∩±≥-÷∙-ⁿ]" "[']" t ("-C") nil) ("nederlands8" "[A-Za-z└-┼╟╚-╧╥-╓┘-▄α-στΦ-∩±≥-÷∙-ⁿ]" "[^A-Za-z└-┼╟╚-╧╥-╓┘-▄α-στΦ-∩±≥-÷∙-ⁿ]" "[']" t ("-C") nil))))
  4967.  
  4968. (defvar ispell-dictionary-alist-2 (quote (("svenska" "[A-Za-z}{|\\133\\135\\\\]" "[^A-Za-z}{|\\133\\135\\\\]" "[']" nil ("-C") nil) ("svenska8" "[A-Za-zσΣ÷┼─÷]" "[^A-Za-zσΣ÷┼─÷]" "[']" nil ("-C" "-d" "svenska") "~list") ("francais7" "[A-Za-z]" "[^A-Za-z]" "[`'^---]" t nil nil) ("francais" "[A-Za-z└┬╞╟╚╔╩╦╬╧╘┘█▄αΓτΦΘΩδε∩⌠∙√ⁿ]" "[^A-Za-z└┬╞╟╚╔╩╦╬╧╘┘█▄αΓτΦΘΩδε∩⌠∙√ⁿ]" "[---']" t nil "~list") ("francais-tex" "[A-Za-z└┬╞╟╚╔╩╦╬╧╘┘█▄αΓτΦΘΩδε∩⌠∙√ⁿ\\]" "[^A-Za-z└┬╞╟╚╔╩╦╬╧╘┘█▄αΓτΦΘΩδε∩⌠∙√ⁿ\\]" "[---'^`\"]" t nil "~tex") ("dansk" "[A-Z╞╪┼a-zµ°σ]" "[^A-Z╞╪┼a-zµ°σ]" "" nil ("-C") nil))))
  4969.  
  4970. (defvar ispell-dictionary-alist (append ispell-dictionary-alist-1 ispell-dictionary-alist-2) "\
  4971. An alist of dictionaries and their associated parameters.
  4972.  
  4973. Each element of this list is also a list:
  4974.  
  4975. \(DICTIONARY-NAME CASECHARS NOT-CASECHARS OTHERCHARS MANY-OTHERCHARS-P
  4976.         ISPELL-ARGS EXTENDED-CHARACTER-MODE)
  4977.  
  4978. DICTIONARY-NAME is a possible value of variable `ispell-dictionary', nil
  4979. means the default dictionary.
  4980.  
  4981. CASECHARS is a regular expression of valid characters that comprise a
  4982. word.
  4983.  
  4984. NOT-CASECHARS is the opposite regexp of CASECHARS.
  4985.  
  4986. OTHERCHARS is a regular expression of other characters that are valid
  4987. in word constructs.  Otherchars cannot be adjacent to each other in a
  4988. word, nor can they begin or end a word.  This implies we can't check
  4989. \"Stevens'\" as a correct possessive and other correct formations.
  4990.  
  4991. Hint: regexp syntax requires the hyphen to be declared first here.
  4992.  
  4993. MANY-OTHERCHARS-P is non-nil if many otherchars are to be allowed in a
  4994. word instead of only one.
  4995.  
  4996. ISPELL-ARGS is a list of additional arguments passed to the ispell
  4997. subprocess.
  4998.  
  4999. EXTENDED-CHARACTER-MODE should be used when dictionaries are used which
  5000. have been configured in an Ispell affix file.  (For example, umlauts
  5001. can be encoded as \\\"a, a\\\", \"a, ...)  Defaults are ~tex and ~nroff
  5002. in English.  This has the same effect as the command-line `-T' option.
  5003. The buffer Major Mode controls Ispell's parsing in tex or nroff mode,
  5004. but the dictionary can control the extended character mode.
  5005. Both defaults can be overruled in a buffer-local fashion. See
  5006. `ispell-parsing-keyword' for details on this.
  5007.  
  5008. Note that the CASECHARS and OTHERCHARS slots of the alist should
  5009. contain the same character set as casechars and otherchars in the
  5010. language.aff file (e.g., english.aff).")
  5011.  
  5012. (defvar ispell-menu-map nil "\
  5013. Key map for ispell menu")
  5014.  
  5015. (defvar ispell-menu-lucid nil "\
  5016. Spelling menu for Lucid Emacs.")
  5017.  
  5018. (defconst ispell-menu-map-needed (and (not ispell-menu-map) (not (string-match "Lucid" emacs-version))))
  5019.  
  5020. (if ispell-menu-map-needed (let ((dicts (reverse (cons (cons "default" nil) ispell-dictionary-alist))) name) (setq ispell-menu-map (make-sparse-keymap "Spell")) (while dicts (setq name (car (car dicts)) dicts (cdr dicts)) (if (stringp name) (define-key ispell-menu-map (vector (intern name)) (cons (concat "Select " (capitalize name)) (list (quote lambda) nil (quote (interactive)) (list (quote ispell-change-dictionary) name))))))))
  5021.  
  5022. (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-change-dictionary] (quote ("Change Dictionary" . ispell-change-dictionary))) (define-key ispell-menu-map [ispell-kill-ispell] (quote ("Kill Process" . ispell-kill-ispell))) (define-key ispell-menu-map [ispell-pdict-save] (quote ("Save Dictionary" lambda nil (interactive) (ispell-pdict-save t t)))) (define-key ispell-menu-map [ispell-complete-word] (quote ("Complete Word" . ispell-complete-word))) (define-key ispell-menu-map [ispell-complete-word-interior-frag] (quote ("Complete Word Frag" . ispell-complete-word-interior-frag)))))
  5023.  
  5024. (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-continue] (quote ("Continue Check" . ispell-continue))) (define-key ispell-menu-map [ispell-word] (quote ("Check Word" . ispell-word))) (define-key ispell-menu-map [ispell-region] (quote ("Check Region" . ispell-region))) (define-key ispell-menu-map [ispell-buffer] (quote ("Check Buffer" . ispell-buffer)))))
  5025.  
  5026. (if ispell-menu-map-needed (progn (define-key ispell-menu-map [ispell-message] (quote ("Check Message" . ispell-message))) (define-key ispell-menu-map [ispell-help] (quote ("Help" lambda nil (interactive) (describe-function (quote ispell-help))))) (put (quote ispell-region) (quote menu-enable) (quote mark-active)) (fset (quote ispell-menu-map) (symbol-value (quote ispell-menu-map)))))
  5027.  
  5028. (define-key global-map "ñ" (quote ispell-word))
  5029.  
  5030. (autoload (quote ispell-word) "ispell" "\
  5031. Check spelling of word under or before the cursor.
  5032. If the word is not found in dictionary, display possible corrections
  5033. in a window allowing you to choose one.
  5034.  
  5035. With a prefix argument (or if CONTINUE is non-nil),
  5036. resume interrupted spell-checking of a buffer or region.
  5037.  
  5038. If optional argument FOLLOWING is non-nil or if `ispell-following-word'
  5039. is non-nil when called interactively, then the following word
  5040. \(rather than preceding) is checked when the cursor is not over a word.
  5041. When the optional argument QUIETLY is non-nil or `ispell-quietly' is non-nil
  5042. when called interactively, non-corrective messages are suppressed.
  5043.  
  5044. Word syntax described by `ispell-dictionary-alist' (which see).
  5045.  
  5046. This will check or reload the dictionary.  Use \\[ispell-change-dictionary]
  5047. or \\[ispell-region] to update the Ispell process." t nil)
  5048.  
  5049. (autoload (quote ispell-help) "ispell" "\
  5050. Display a list of the options available when a misspelling is encountered.
  5051.  
  5052. Selections are:
  5053.  
  5054. DIGIT: Replace the word with a digit offered in the *Choices* buffer.
  5055. SPC:   Accept word this time.
  5056. `i':   Accept word and insert into private dictionary.
  5057. `a':   Accept word for this session.
  5058. `A':   Accept word and place in `buffer-local dictionary'.
  5059. `r':   Replace word with typed-in value.  Rechecked.
  5060. `R':   Replace word with typed-in value. Query-replaced in buffer. Rechecked.
  5061. `?':   Show these commands.
  5062. `x':   Exit spelling buffer.  Move cursor to original point.
  5063. `X':   Exit spelling buffer.  Leaves cursor at the current point, and permits
  5064.         the aborted check to be completed later.
  5065. `q':   Quit spelling session (Kills ispell process).
  5066. `l':   Look up typed-in replacement in alternate dictionary.  Wildcards okay.
  5067. `u':   Like `i', but the word is lower-cased first.
  5068. `m':   Like `i', but allows one to include dictionary completion information.
  5069. `C-l':  redraws screen
  5070. `C-r':  recursive edit
  5071. `C-z':  suspend emacs or iconify frame" nil nil)
  5072.  
  5073. (autoload (quote ispell-kill-ispell) "ispell" "\
  5074. Kill current Ispell process (so that you may start a fresh one).
  5075. With NO-ERROR, just return non-nil if there was no Ispell running." t nil)
  5076.  
  5077. (autoload (quote ispell-change-dictionary) "ispell" "\
  5078. Change `ispell-dictionary' (q.v.) and kill old Ispell process.
  5079. A new one will be started as soon as necessary.
  5080.  
  5081. By just answering RET you can find out what the current dictionary is.
  5082.  
  5083. With prefix argument, set the default directory." t nil)
  5084.  
  5085. (autoload (quote ispell-region) "ispell" "\
  5086. Interactively check a region for spelling errors." t nil)
  5087.  
  5088. (autoload (quote ispell-buffer) "ispell" "\
  5089. Check the current buffer for spelling errors interactively." t nil)
  5090.  
  5091. (autoload (quote ispell-continue) "ispell" nil t nil)
  5092.  
  5093. (autoload (quote ispell-complete-word) "ispell" "\
  5094. Look up word before or under point in dictionary (see lookup-words command)
  5095. and try to complete it.  If optional INTERIOR-FRAG is non-nil then the word
  5096. may be a character sequence inside of a word.
  5097.  
  5098. Standard ispell choices are then available." t nil)
  5099.  
  5100. (autoload (quote ispell-complete-word-interior-frag) "ispell" "\
  5101. Completes word matching character sequence inside a word." t nil)
  5102.  
  5103. (autoload (quote ispell-minor-mode) "ispell" "\
  5104. Toggle Ispell minor mode.
  5105. With prefix arg, turn Ispell minor mode on iff arg is positive.
  5106.  
  5107. In Ispell minor mode, pressing SPC or RET
  5108. warns you if the previous word is incorrectly spelled." t nil)
  5109.  
  5110. (autoload (quote ispell-message) "ispell" "\
  5111. Check the spelling of a mail message or news post.
  5112. Don't check spelling of message headers except the Subject field.
  5113. Don't check included messages.
  5114.  
  5115. To abort spell checking of a message region and send the message anyway,
  5116. use the `x' command.  (Any subsequent regions will be checked.)
  5117. The `X' command aborts the message send so that you can edit the buffer.
  5118.  
  5119. To spell-check whenever a message is sent, include the appropriate lines
  5120. in your .emacs file:
  5121.    (add-hook 'message-send-hook 'ispell-message)
  5122.    (add-hook 'mail-send-hook  'ispell-message)
  5123.    (add-hook 'mh-before-send-letter-hook 'ispell-message)
  5124.  
  5125. You can bind this to the key C-c i in GNUS or mail by adding to
  5126. `news-reply-mode-hook' or `mail-mode-hook' the following lambda expression:
  5127.    (function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))" t nil)
  5128.  
  5129. ;;;***
  5130.  
  5131. ;;;### (autoloads nil "jka-compr" "jka-compr.el" (12673 9361))
  5132. ;;; Generated autoloads from jka-compr.el
  5133. (defun auto-compression-mode (&optional arg)
  5134.  "\
  5135. Toggle automatic file compression and uncompression.
  5136. With prefix argument ARG, turn auto compression on if positive, else off.
  5137. Returns the new status of auto compression (non-nil means on)."
  5138.  (interactive "P")
  5139.  (if (not (fboundp 'jka-compr-installed-p))
  5140.      (progn
  5141.        (require 'jka-compr)
  5142.        ;; That turned the mode on, so make it initially off.
  5143.        (toggle-auto-compression)))
  5144.  (toggle-auto-compression arg t))
  5145.  
  5146. ;;;***
  5147.  
  5148. ;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" "lazy-lock.el" (12750 18454))
  5149. ;;; Generated autoloads from lazy-lock.el
  5150.  
  5151. (autoload (quote lazy-lock-mode) "lazy-lock" "\
  5152. Toggle Lazy Lock mode.
  5153. With arg, turn Lazy Lock mode on if and only if arg is positive.  Enable it
  5154. automatically in your `~/.emacs' by:
  5155.  
  5156.  (setq font-lock-support-mode 'lazy-lock-mode)
  5157.  
  5158. When Lazy Lock mode is enabled, fontification can be lazy in a number of ways:
  5159.  
  5160.  - Demand-driven buffer fontification if `lazy-lock-minimum-size' is non-nil.
  5161.    This means initial fontification does not occur if the buffer is greater
  5162.    than `lazy-lock-minimum-size' characters in length.  Instead, fontification
  5163.    occurs when necessary, such as when scrolling through the buffer would
  5164.    otherwise reveal unfontified areas.  This is useful if buffer fontification
  5165.    is too slow for large buffers.
  5166.  
  5167.  - Defer-driven buffer fontification if `lazy-lock-defer-driven' is non-nil.
  5168.    This means all fontification is deferred, such as fontification that occurs
  5169.    when scrolling through the buffer would otherwise reveal unfontified areas.
  5170.    Instead, these areas are seen momentarily unfontified.  This is useful if
  5171.    demand-driven fontification is too slow to keep up with scrolling.
  5172.  
  5173.  - Deferred on-the-fly fontification if `lazy-lock-defer-time' is non-nil.
  5174.    This means on-the-fly fontification does not occur as you type.  Instead,
  5175.    fontification is deferred until after `lazy-lock-defer-time' seconds of
  5176.    Emacs idle time, while Emacs remains idle.  This is useful if on-the-fly
  5177.    fontification is too slow to keep up with your typing.
  5178.  
  5179.  - Stealthy buffer fontification if `lazy-lock-stealth-time' is non-nil.
  5180.    This means remaining unfontified areas of buffers are fontified if Emacs has
  5181.    been idle for `lazy-lock-stealth-time' seconds, while Emacs remains idle.
  5182.    This is useful if any buffer has demand- or defer-driven fontification.
  5183.  
  5184. See also variables `lazy-lock-stealth-lines', `lazy-lock-stealth-nice' and
  5185. `lazy-lock-stealth-verbose' for stealth fontification.
  5186.  
  5187. Use \\[lazy-lock-submit-bug-report] to send bug reports or feedback." t nil)
  5188.  
  5189. (autoload (quote turn-on-lazy-lock) "lazy-lock" "\
  5190. Unconditionally turn on Lazy Lock mode." nil nil)
  5191.  
  5192. ;;;***
  5193.  
  5194. ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" (12536 45574))
  5195. ;;; Generated autoloads from ledit.el
  5196.  
  5197. (defconst ledit-save-files t "\
  5198. *Non-nil means Ledit should save files before transferring to Lisp.")
  5199.  
  5200. (defconst ledit-go-to-lisp-string "%?lisp" "\
  5201. *Shell commands to execute to resume Lisp job.")
  5202.  
  5203. (defconst ledit-go-to-liszt-string "%?liszt" "\
  5204. *Shell commands to execute to resume Lisp compiler job.")
  5205.  
  5206. (autoload (quote ledit-mode) "ledit" "\
  5207. \\<ledit-mode-map>Major mode for editing text and stuffing it to a Lisp job.
  5208. Like Lisp mode, plus these special commands:
  5209.   \\[ledit-save-defun]    -- record defun at or after point
  5210.        for later transmission to Lisp job.
  5211.   \\[ledit-save-region] -- record region for later transmission to Lisp job.
  5212.   \\[ledit-go-to-lisp] -- transfer to Lisp job and transmit saved text.
  5213.   \\[ledit-go-to-liszt] -- transfer to Liszt (Lisp compiler) job
  5214.        and transmit saved text.
  5215. \\{ledit-mode-map}
  5216. To make Lisp mode automatically change to Ledit mode,
  5217. do (setq lisp-mode-hook 'ledit-from-lisp-mode)" t nil)
  5218.  
  5219. (autoload (quote ledit-from-lisp-mode) "ledit" nil nil nil)
  5220.  
  5221. ;;;***
  5222.  
  5223. ;;;### (autoloads (life) "life" "life.el" (12536 45574))
  5224. ;;; Generated autoloads from life.el
  5225.  
  5226. (autoload (quote life) "life" "\
  5227. Run Conway's Life simulation.
  5228. The starting pattern is randomly selected.  Prefix arg (optional first
  5229. arg non-nil from a program) is the number of seconds to sleep between
  5230. generations (this defaults to 1)." t nil)
  5231.  
  5232. ;;;***
  5233.  
  5234. ;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (12536 45574))
  5235. ;;; Generated autoloads from loadhist.el
  5236.  
  5237. (autoload (quote unload-feature) "loadhist" "\
  5238. Unload the library that provided FEATURE, restoring all its autoloads.
  5239. If the feature is required by any other loaded code, and optional FORCE
  5240. is nil, raise an error." t nil)
  5241.  
  5242. ;;;***
  5243.  
  5244. ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer) "lpr" "lpr.el" (12538 55123))
  5245. ;;; Generated autoloads from lpr.el
  5246.  
  5247. (defvar lpr-switches nil "\
  5248. *List of strings to pass as extra options for the printer program.
  5249. See `lpr-command'.")
  5250.  
  5251. (defvar lpr-command (if (memq system-type (quote (usg-unix-v dgux hpux irix))) "lp" "lpr") "\
  5252. *Name of program for printing a file.")
  5253.  
  5254. (autoload (quote lpr-buffer) "lpr" "\
  5255. Print buffer contents as with Unix command `lpr'.
  5256. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  5257.  
  5258. (autoload (quote print-buffer) "lpr" "\
  5259. Print buffer contents as with Unix command `lpr -p'.
  5260. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  5261.  
  5262. (autoload (quote lpr-region) "lpr" "\
  5263. Print region contents as with Unix command `lpr'.
  5264. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  5265.  
  5266. (autoload (quote print-region) "lpr" "\
  5267. Print region contents as with Unix command `lpr -p'.
  5268. `lpr-switches' is a list of extra switches (strings) to pass to lpr." t nil)
  5269.  
  5270. ;;;***
  5271.  
  5272. ;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (12541 53441))
  5273. ;;; Generated autoloads from ls-lisp.el
  5274.  
  5275. (defvar ls-lisp-support-shell-wildcards t "\
  5276. *Non-nil means file patterns are treated as shell wildcards.
  5277. nil means they are treated as Emacs regexps (for backward compatibility).
  5278. This variable is checked by \\[insert-directory] only when `ls-lisp.el'
  5279. package is used.")
  5280.  
  5281. ;;;***
  5282.  
  5283. ;;;### (autoloads (phases-of-moon) "lunar" "lunar.el" (12550 33373))
  5284. ;;; Generated autoloads from lunar.el
  5285.  
  5286. (autoload (quote phases-of-moon) "lunar" "\
  5287. Display the quarters of the moon for last month, this month, and next month.
  5288. If called with an optional prefix argument, prompts for month and year.
  5289.  
  5290. This function is suitable for execution in a .emacs file." t nil)
  5291.  
  5292. ;;;***
  5293.  
  5294. ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro name-last-kbd-macro) "macros" "macros.el" (12716 34333))
  5295. ;;; Generated autoloads from macros.el
  5296.  
  5297. (autoload (quote name-last-kbd-macro) "macros" "\
  5298. Assign a name to the last keyboard macro defined.
  5299. Argument SYMBOL is the name to define.
  5300. The symbol's function definition becomes the keyboard macro string.
  5301. Such a \"function\" cannot be called from Lisp, but it is a valid editor command." t nil)
  5302.  
  5303. (autoload (quote insert-kbd-macro) "macros" "\
  5304. Insert in buffer the definition of kbd macro NAME, as Lisp code.
  5305. Optional second arg KEYS means also record the keys it is on
  5306. \(this is the prefix argument, when calling interactively).
  5307.  
  5308. This Lisp code will, when executed, define the kbd macro with the same
  5309. definition it has now.  If you say to record the keys, the Lisp code
  5310. will also rebind those keys to the macro.  Only global key bindings
  5311. are recorded since executing this Lisp code always makes global
  5312. bindings.
  5313.  
  5314. To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
  5315. use this command, and then save the file." t nil)
  5316.  
  5317. (autoload (quote kbd-macro-query) "macros" "\
  5318. Query user during kbd macro execution.
  5319.   With prefix argument, enters recursive edit, reading keyboard
  5320. commands even within a kbd macro.  You can give different commands
  5321. each time the macro executes.
  5322.   Without prefix argument, asks whether to continue running the macro.
  5323. Your options are: \\<query-replace-map>
  5324. \\[act]    Finish this iteration normally and continue with the next.
  5325. \\[skip]    Skip the rest of this iteration, and start the next.
  5326. \\[exit]    Stop the macro entirely right now.
  5327. \\[recenter]    Redisplay the screen, then ask again.
  5328. \\[edit]    Enter recursive edit; ask again when you exit from that." t nil)
  5329.  
  5330. (autoload (quote apply-macro-to-region-lines) "macros" "\
  5331. For each complete line between point and mark, move to the beginning
  5332. of the line, and run the last keyboard macro.
  5333.  
  5334. When called from lisp, this function takes two arguments TOP and
  5335. BOTTOM, describing the current region.  TOP must be before BOTTOM.
  5336. The optional third argument MACRO specifies a keyboard macro to
  5337. execute.
  5338.  
  5339. This is useful for quoting or unquoting included text, adding and
  5340. removing comments, or producing tables where the entries are regular.
  5341.  
  5342. For example, in Usenet articles, sections of text quoted from another
  5343. author are indented, or have each line start with `>'.  To quote a
  5344. section of text, define a keyboard macro which inserts `>', put point
  5345. and mark at opposite ends of the quoted section, and use
  5346. `\\[apply-macro-to-region-lines]' to mark the entire section.
  5347.  
  5348. Suppose you wanted to build a keyword table in C where each entry
  5349. looked like this:
  5350.  
  5351.     { \"foo\", foo_data, foo_function }, 
  5352.     { \"bar\", bar_data, bar_function },
  5353.     { \"baz\", baz_data, baz_function },
  5354.  
  5355. You could enter the names in this format:
  5356.  
  5357.     foo
  5358.     bar
  5359.     baz
  5360.  
  5361. and write a macro to massage a word into a table entry:
  5362.  
  5363.     \\C-x (
  5364.        \\M-d { \"\\C-y\", \\C-y_data, \\C-y_function },
  5365.     \\C-x )
  5366.  
  5367. and then select the region of un-tablified names and use
  5368. `\\[apply-macro-to-region-lines]' to build the table from the names.
  5369. " t nil)
  5370.  (define-key ctl-x-map "q" 'kbd-macro-query)
  5371.  
  5372. ;;;***
  5373.  
  5374. ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" "mail-extr.el" (12752 13978))
  5375. ;;; Generated autoloads from mail-extr.el
  5376.  
  5377. (autoload (quote mail-extract-address-components) "mail-extr" "\
  5378. Given an RFC-822 ADDRESS, extract full name and canonical address.
  5379. Returns a list of the form (FULL-NAME CANONICAL-ADDRESS).
  5380. If no name can be extracted, FULL-NAME will be nil.
  5381. ADDRESS may be a string or a buffer.  If it is a buffer, the visible 
  5382.  (narrowed) portion of the buffer will be interpreted as the address.
  5383.  (This feature exists so that the clever caller might be able to avoid
  5384.  consing a string.)
  5385. If ADDRESS contains more than one RFC-822 address, only the first is
  5386.  returned.  Some day this function may be extended to extract multiple
  5387.  addresses, or perhaps return the position at which parsing stopped." nil nil)
  5388.  
  5389. (autoload (quote what-domain) "mail-extr" "\
  5390. Convert mail domain DOMAIN to the country it corresponds to." t nil)
  5391.  
  5392. ;;;***
  5393.  
  5394. ;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-enable mail-hist-define-keys) "mail-hist" "mail-hist.el" (12785 6028))
  5395. ;;; Generated autoloads from mail-hist.el
  5396.  
  5397. (autoload (quote mail-hist-define-keys) "mail-hist" "\
  5398. Define keys for accessing mail header history.  For use in hooks." nil nil)
  5399.  
  5400. (autoload (quote mail-hist-enable) "mail-hist" nil nil nil)
  5401.  
  5402. (defvar mail-hist-keep-history t "\
  5403. *Non-nil means keep a history for headers and text of outgoing mail.")
  5404.  
  5405. (autoload (quote mail-hist-put-headers-into-history) "mail-hist" "\
  5406. Put headers and contents of this message into mail header history. 
  5407. Each header has its own independent history, as does the body of the
  5408. message.
  5409.  
  5410. This function normally would be called when the message is sent." nil nil)
  5411.  
  5412. ;;;***
  5413.  
  5414. ;;;### (autoloads (mail-fetch-field mail-file-babyl-p) "mail-utils" "mail-utils.el" (12765 6689))
  5415. ;;; Generated autoloads from mail-utils.el
  5416.  
  5417. (defvar mail-use-rfc822 nil "\
  5418. *If non-nil, use a full, hairy RFC822 parser on mail addresses.
  5419. Otherwise, (the default) use a smaller, somewhat faster, and
  5420. often correct parser.")
  5421.  
  5422. (autoload (quote mail-file-babyl-p) "mail-utils" nil nil nil)
  5423.  
  5424. (autoload (quote mail-fetch-field) "mail-utils" "\
  5425. Return the value of the header field FIELD-NAME.
  5426. The buffer is expected to be narrowed to just the headers of the message.
  5427. If second arg LAST is non-nil, use the last such field if there are several.
  5428. If third arg ALL is non-nil, concatenate all such fields with commas between." nil nil)
  5429.  
  5430. ;;;***
  5431.  
  5432. ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup) "mailabbrev" "mailabbrev.el" (12715 6275))
  5433. ;;; Generated autoloads from mailabbrev.el
  5434.  
  5435. (autoload (quote mail-abbrevs-setup) "mailabbrev" "\
  5436. Initialize use of the `mailabbrev' package." nil nil)
  5437.  
  5438. (autoload (quote build-mail-abbrevs) "mailabbrev" "\
  5439. Read mail aliases from personal mail alias file and set `mail-abbrevs'.
  5440. By default this is the file specified by `mail-personal-alias-file'." nil nil)
  5441.  
  5442. (autoload (quote define-mail-abbrev) "mailabbrev" "\
  5443. Define NAME as a mail alias abbrev that translates to DEFINITION.
  5444. If DEFINITION contains multiple addresses, separate them with commas." t nil)
  5445.  
  5446. ;;;***
  5447.  
  5448. ;;;### (autoloads (mail-complete define-mail-alias) "mailalias" "mailalias.el" (12750 25780))
  5449. ;;; Generated autoloads from mailalias.el
  5450.  
  5451. (autoload (quote define-mail-alias) "mailalias" "\
  5452. Define NAME as a mail alias that translates to DEFINITION.
  5453. This means that sending a message to NAME will actually send to DEFINITION.
  5454.  
  5455. Normally, the addresses in DEFINITION must be separated by commas.
  5456. If FROM-MAILRC-FILE is non-nil, then addresses in DEFINITION 
  5457. can be separated by spaces; an address can contain spaces
  5458. if it is quoted with double-quotes." t nil)
  5459.  
  5460. (autoload (quote mail-complete) "mailalias" "\
  5461. Perform completion on header field or word preceding point.
  5462. Completable headers are according to `mail-complete-alist'.  If none matches
  5463. current header, calls `mail-complete-function' and passes prefix arg if any." t nil)
  5464.  
  5465. ;;;***
  5466.  
  5467. ;;;### (autoloads (makefile-mode) "make-mode" "make-mode.el" (12754 15556))
  5468. ;;; Generated autoloads from make-mode.el
  5469.  
  5470. (autoload (quote makefile-mode) "make-mode" "\
  5471. Major mode for editing Makefiles.
  5472. This function ends by invoking the function(s) `makefile-mode-hook'.
  5473.  
  5474. \\{makefile-mode-map}
  5475.  
  5476. In the browser, use the following keys:
  5477.  
  5478. \\{makefile-browser-map}
  5479.  
  5480. Makefile mode can be configured by modifying the following variables:
  5481.  
  5482. makefile-browser-buffer-name:
  5483.     Name of the macro- and target browser buffer.
  5484.  
  5485. makefile-target-colon:
  5486.     The string that gets appended to all target names
  5487.     inserted by `makefile-insert-target'.
  5488.     \":\" or \"::\" are quite common values.
  5489.  
  5490. makefile-macro-assign:
  5491.    The string that gets appended to all macro names
  5492.    inserted by `makefile-insert-macro'.
  5493.    The normal value should be \" = \", since this is what
  5494.    standard make expects. However, newer makes such as dmake
  5495.    allow a larger variety of different macro assignments, so you
  5496.    might prefer to use \" += \" or \" := \" .
  5497.  
  5498. makefile-tab-after-target-colon:
  5499.    If you want a TAB (instead of a space) to be appended after the
  5500.    target colon, then set this to a non-nil value.
  5501.  
  5502. makefile-browser-leftmost-column:
  5503.    Number of blanks to the left of the browser selection mark.
  5504.  
  5505. makefile-browser-cursor-column:
  5506.    Column in which the cursor is positioned when it moves
  5507.    up or down in the browser.
  5508.  
  5509. makefile-browser-selected-mark:
  5510.    String used to mark selected entries in the browser.
  5511.  
  5512. makefile-browser-unselected-mark:
  5513.    String used to mark unselected entries in the browser.
  5514.  
  5515. makefile-browser-auto-advance-after-selection-p:
  5516.    If this variable is set to a non-nil value the cursor
  5517.    will automagically advance to the next line after an item
  5518.    has been selected in the browser.
  5519.  
  5520. makefile-pickup-everything-picks-up-filenames-p:
  5521.    If this variable is set to a non-nil value then
  5522.    `makefile-pickup-everything' also picks up filenames as targets
  5523.    (i.e. it calls `makefile-find-filenames-as-targets'), otherwise
  5524.    filenames are omitted.
  5525.  
  5526. makefile-cleanup-continuations-p:
  5527.    If this variable is set to a non-nil value then makefile-mode
  5528.    will assure that no line in the file ends with a backslash
  5529.    (the continuation character) followed by any whitespace.
  5530.    This is done by silently removing the trailing whitespace, leaving
  5531.    the backslash itself intact.
  5532.    IMPORTANT: Please note that enabling this option causes makefile-mode
  5533.    to MODIFY A FILE WITHOUT YOUR CONFIRMATION when \"it seems necessary\".
  5534.  
  5535. makefile-browser-hook:
  5536.    A function or list of functions to be called just before the
  5537.    browser is entered. This is executed in the makefile buffer.
  5538.  
  5539. makefile-special-targets-list:
  5540.    List of special targets. You will be offered to complete
  5541.    on one of those in the minibuffer whenever you enter a `.'.
  5542.    at the beginning of a line in Makefile mode." t nil)
  5543.  
  5544. ;;;***
  5545.  
  5546. ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (12536 45574))
  5547. ;;; Generated autoloads from makesum.el
  5548.  
  5549. (autoload (quote make-command-summary) "makesum" "\
  5550. Make a summary of current key bindings in the buffer *Summary*.
  5551. Previous contents of that buffer are killed first." t nil)
  5552.  
  5553. ;;;***
  5554.  
  5555. ;;;### (autoloads (man) "man" "man.el" (12599 56964))
  5556. ;;; Generated autoloads from man.el
  5557.  
  5558. (defalias (quote manual-entry) (quote man))
  5559.  
  5560. (autoload (quote man) "man" "\
  5561. Get a Un*x manual page and put it in a buffer.
  5562. This command is the top-level command in the man package.  It runs a Un*x
  5563. command to retrieve and clean a manpage in the background and places the
  5564. results in a Man mode (manpage browsing) buffer.  See variable
  5565. `Man-notify-method' for what happens when the buffer is ready.
  5566. If a buffer already exists for this man page, it will display immediately." t nil)
  5567.  
  5568. ;;;***
  5569.  
  5570. ;;;### (autoloads (unbold-region bold-region message-news-other-frame message-news-other-window message-mail-other-frame message-mail-other-window message-bounce message-resend message-forward message-recover message-supersede message-cancel-news message-followup message-wide-reply message-reply message-news message-mail message-mode) "message" "message.el" (12780 9694))
  5571. ;;; Generated autoloads from message.el
  5572.  
  5573. (defvar message-fcc-handler-function (quote rmail-output) "\
  5574. *A function called to save outgoing articles.
  5575. This function will be called with the name of the file to store the
  5576. article in. The default function is `rmail-output' which saves in Unix
  5577. mailbox format.")
  5578.  
  5579. (defvar message-courtesy-message "The following message is a courtesy copy of an article\nthat has been posted as well.\n\n" "\
  5580. *This is inserted at the start of a mailed copy of a posted message.
  5581. If this variable is nil, no such courtesy message will be added.")
  5582.  
  5583. (defvar message-ignored-bounced-headers "^\\(Received\\|Return-Path\\):" "\
  5584. *Regexp that matches headers to be removed in resent bounced mail.")
  5585.  
  5586. (defvar message-from-style (quote default) "\
  5587. *Specifies how \"From\" headers look.
  5588.  
  5589. If `nil', they contain just the return address like:
  5590.     king@grassland.com
  5591. If `parens', they look like:
  5592.     king@grassland.com (Elvis Parsley)
  5593. If `angles', they look like:
  5594.     Elvis Parsley <king@grassland.com>
  5595.  
  5596. Otherwise, most addresses look like `angles', but they look like
  5597. `parens' if `angles' would need quoting and `parens' would not.")
  5598.  
  5599. (defvar message-syntax-checks nil "\
  5600. Controls what syntax checks should not be performed on outgoing posts.
  5601. To disable checking of long signatures, for instance, add
  5602.  `(signature . disabled)' to this list.
  5603.  
  5604. Don't touch this variable unless you really know what you're doing.
  5605.  
  5606. Checks include subject-cmsg multiple-headers sendsys message-id from
  5607. long-lines control-chars size new-text redirected-followup signature
  5608. approved sender empty empty-headers message-id from subject.")
  5609.  
  5610. (defvar message-required-news-headers (quote (From Newsgroups Subject Date Message-ID (optional . Organization) Lines (optional . X-Newsreader))) "\
  5611. *Headers to be generated or prompted for when posting an article.
  5612. RFC977 and RFC1036 require From, Date, Newsgroups, Subject,
  5613. Message-ID.  Organization, Lines, In-Reply-To, Expires, and
  5614. X-Newsreader are optional.  If don't you want message to insert some
  5615. header, remove it from this list.")
  5616.  
  5617. (defvar message-required-mail-headers (quote (From Subject Date (optional . In-Reply-To) Message-ID Lines (optional . X-Mailer))) "\
  5618. *Headers to be generated or prompted for when mailing a message.
  5619. RFC822 required that From, Date, To, Subject and Message-ID be
  5620. included.  Organization, Lines and X-Mailer are optional.")
  5621.  
  5622. (defvar message-deletable-headers (quote (Message-ID Date)) "\
  5623. *Headers to be deleted if they already exist and were generated by message previously.")
  5624.  
  5625. (defvar message-ignored-news-headers "^NNTP-Posting-Host:\\|^Xref:\\|^Bcc:\\|^Gcc:\\|^Fcc:" "\
  5626. *Regexp of headers to be removed unconditionally before posting.")
  5627.  
  5628. (defvar message-ignored-mail-headers "^Gcc:\\|^Fcc:" "\
  5629. *Regexp of headers to be removed unconditionally before mailing.")
  5630.  
  5631. (defvar message-ignored-supersedes-headers "^Path:\\|^Date\\|^NNTP-Posting-Host:\\|^Xref:\\|^Lines:\\|^Received:\\|^X-From-Line:\\|Return-Path:\\|^Supersedes:" "\
  5632. *Header lines matching this regexp will be deleted before posting.
  5633. It's best to delete old Path and Date headers before posting to avoid
  5634. any confusion.")
  5635.  
  5636. (defvar message-signature-separator "^-- *$" "\
  5637. Regexp matching the signature separator.")
  5638.  
  5639. (defvar message-interactive nil "\
  5640. Non-nil means when sending a message wait for and display errors.
  5641. nil means let mailer mail back a message to report errors.")
  5642.  
  5643. (defvar message-generate-new-buffers t "\
  5644. *Non-nil means that a new message buffer will be created whenever `mail-setup' is called.
  5645. If this is a function, call that function with three parameters:  The type,
  5646. the to address and the group name.  (Any of these may be nil.)  The function
  5647. should return the new buffer name.")
  5648.  
  5649. (defvar message-kill-buffer-on-exit nil "\
  5650. *Non-nil means that the message buffer will be killed after sending a message.")
  5651.  
  5652. (defvar message-user-organization-file "/usr/lib/news/organization" "\
  5653. *Local news organization file.")
  5654.  
  5655. (defvar message-signature-before-forwarded-message t "\
  5656. *If non-nil, put the signature before any included forwarded message.")
  5657.  
  5658. (defvar message-included-forward-headers "^From:\\|^Newsgroups:\\|^Subject:\\|^Date:\\|^Followup-To:\\|^Reply-To:\\|^Organization:\\|^Summary:\\|^Keywords:\\|^To:\\|^Cc:\\|^Posted-To:\\|^Mail-Copies-To:\\|^Apparently-To:\\|^Gnus-Warning:\\|^Resent-\\|^Message-ID:\\|^References:" "\
  5659. *Regexp matching headers to be included in forwarded messages.")
  5660.  
  5661. (defvar message-ignored-resent-headers "^Return-receipt" "\
  5662. *All headers that match this regexp will be deleted when resending a message.")
  5663.  
  5664. (defvar message-ignored-cited-headers "." "\
  5665. Delete these headers from the messages you yank.")
  5666.  
  5667. (defvar message-send-mail-function (quote message-send-mail-with-sendmail) "\
  5668. Function to call to send the current buffer as mail.
  5669. The headers should be delimited by a line whose contents match the
  5670. variable `mail-header-separator'.
  5671.  
  5672. Legal values include `message-send-mail-with-mh' and
  5673. `message-send-mail-with-sendmail', which is the default.")
  5674.  
  5675. (defvar message-send-news-function (quote message-send-news) "\
  5676. Function to call to send the current buffer as news.
  5677. The headers should be delimited by a line whose contents match the
  5678. variable `mail-header-separator'.")
  5679.  
  5680. (defvar message-reply-to-function nil "\
  5681. Function that should return a list of headers.
  5682. This function should pick out addresses from the To, Cc, and From headers
  5683. and respond with new To and Cc headers.")
  5684.  
  5685. (defvar message-wide-reply-to-function nil "\
  5686. Function that should return a list of headers.
  5687. This function should pick out addresses from the To, Cc, and From headers
  5688. and respond with new To and Cc headers.")
  5689.  
  5690. (defvar message-followup-to-function nil "\
  5691. Function that should return a list of headers.
  5692. This function should pick out addresses from the To, Cc, and From headers
  5693. and respond with new To and Cc headers.")
  5694.  
  5695. (defvar message-use-followup-to (quote ask) "\
  5696. *Specifies what to do with Followup-To header.
  5697. If nil, ignore the header. If it is t, use its value, but query before
  5698. using the \"poster\" value.  If it is the symbol `ask', query the user
  5699. whether to ignore the \"poster\" value.  If it is the symbol `use',
  5700. always use the value.")
  5701.  
  5702. (defvar message-post-method (cond ((and (boundp (quote gnus-post-method)) gnus-post-method) gnus-post-method) ((boundp (quote gnus-select-method)) gnus-select-method) (t (quote (nnspool "")))) "\
  5703. Method used to post news.")
  5704.  
  5705. (defvar message-generate-headers-first nil "\
  5706. *If non-nil, generate all possible headers before composing.")
  5707.  
  5708. (defvar message-citation-line-function (quote message-insert-citation-line) "\
  5709. *Function called to insert the \"Whomever writes:\" line.")
  5710.  
  5711. (defvar message-yank-prefix "> " "\
  5712. *Prefix inserted on the lines of yanked messages.
  5713. nil means use indentation.")
  5714.  
  5715. (defvar message-cite-function (quote message-cite-original) "\
  5716. *Function for citing an original message.")
  5717.  
  5718. (defvar message-indent-citation-function (quote message-indent-citation) "\
  5719. *Function for modifying a citation just inserted in the mail buffer.
  5720. This can also be a list of functions.  Each function can find the
  5721. citation between (point) and (mark t).  And each function should leave
  5722. point and mark around the citation text as modified.")
  5723.  
  5724. (defvar message-signature t "\
  5725. *String to be inserted at the end of the message buffer.
  5726. If t, the `message-signature-file' file will be inserted instead.
  5727. If a function, the result from the function will be used instead.
  5728. If a form, the result from the form will be used instead.")
  5729.  
  5730. (defvar message-signature-file "~/.signature" "\
  5731. *File containing the text inserted at end of message. buffer.")
  5732.  
  5733. (defvar message-default-headers nil "\
  5734. *A string containing header lines to be inserted in outgoing messages.
  5735. It is inserted before you edit the message, so you can edit or delete
  5736. these lines.")
  5737.  
  5738. (defvar message-default-mail-headers nil "\
  5739. *A string of header lines to be inserted in outgoing mails.")
  5740.  
  5741. (defvar message-default-news-headers nil "\
  5742. *A string of header lines to be inserted in outgoing news articles.")
  5743.  
  5744. (autoload (quote message-mode) "message" "\
  5745. Major mode for editing mail and news to be sent.
  5746. Like Text Mode but with these additional commands:
  5747. C-c C-s  message-send (send the message)    C-c C-c  message-send-and-exit
  5748. C-c C-f  move to a header field (and create it if there isn't):
  5749.      C-c C-f C-t  move to To    C-c C-f C-s  move to Subject
  5750.      C-c C-f C-c  move to Cc    C-c C-f C-b  move to Bcc
  5751.      C-c C-f C-f  move to Fcc    C-c C-f C-r  move to Reply-To
  5752.      C-c C-f C-u  move to Summary    C-c C-f C-n  move to Newsgroups
  5753.      C-c C-f C-k  move to Keywords    C-c C-f C-d  move to Distribution
  5754.      C-c C-f C-o  move to Followup-To
  5755. C-c C-t  message-insert-to (add a To header to a news followup)
  5756. C-c C-n  message-insert-newsgroups (add a Newsgroup header to a news reply)
  5757. C-c C-b  message-goto-body (move to beginning of message text).
  5758. C-c C-i  message-goto-signature (move to the beginning of the signature).
  5759. C-c C-w  message-insert-signature (insert `message-signature-file' file).
  5760. C-c C-y  message-yank-original (insert current message, if any).
  5761. C-c C-q  message-fill-yanked-message (fill what was yanked).
  5762. C-c C-r  message-ceasar-buffer-body (rot13 the message body)." t nil)
  5763.  
  5764. (autoload (quote message-mail) "message" "\
  5765. Start editing a mail message to be sent." t nil)
  5766.  
  5767. (autoload (quote message-news) "message" "\
  5768. Start editing a news article to be sent." t nil)
  5769.  
  5770. (autoload (quote message-reply) "message" "\
  5771. Start editing a reply to the article in the current buffer." t nil)
  5772.  
  5773. (autoload (quote message-wide-reply) "message" nil t nil)
  5774.  
  5775. (autoload (quote message-followup) "message" nil t nil)
  5776.  
  5777. (autoload (quote message-cancel-news) "message" "\
  5778. Cancel an article you posted." t nil)
  5779.  
  5780. (autoload (quote message-supersede) "message" "\
  5781. Start composing a message to supersede the current message.
  5782. This is done simply by taking the old article and adding a Supersedes
  5783. header line with the old Message-ID." t nil)
  5784.  
  5785. (autoload (quote message-recover) "message" "\
  5786. Reread contents of current buffer from its last auto-save file." t nil)
  5787.  
  5788. (autoload (quote message-forward) "message" "\
  5789. Forward the current message via mail.  
  5790. Optional NEWS will use news to forward instead of mail." t nil)
  5791.  
  5792. (autoload (quote message-resend) "message" "\
  5793. Resend the current article to ADDRESS." t nil)
  5794.  
  5795. (autoload (quote message-bounce) "message" "\
  5796. Re-mail the current message.
  5797. This only makes sense if the current message is a bounce message than
  5798. contains some mail you have written which has been bounced back to
  5799. you." t nil)
  5800.  
  5801. (autoload (quote message-mail-other-window) "message" "\
  5802. Like `message-mail' command, but display mail buffer in another window." t nil)
  5803.  
  5804. (autoload (quote message-mail-other-frame) "message" "\
  5805. Like `message-mail' command, but display mail buffer in another frame." t nil)
  5806.  
  5807. (autoload (quote message-news-other-window) "message" "\
  5808. Start editing a news article to be sent." t nil)
  5809.  
  5810. (autoload (quote message-news-other-frame) "message" "\
  5811. Start editing a news article to be sent." t nil)
  5812.  
  5813. (autoload (quote bold-region) "message" "\
  5814. Bold all nonblank characters in the region.
  5815. Works by overstriking characters.
  5816. Called from program, takes two arguments START and END
  5817. which specify the range to operate on." t nil)
  5818.  
  5819. (autoload (quote unbold-region) "message" "\
  5820. Remove all boldness (overstruck characters) in the region.
  5821. Called from program, takes two arguments START and END
  5822. which specify the range to operate on." t nil)
  5823.  
  5824. ;;;***
  5825.  
  5826. ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body metamail-interpret-header) "metamail" "metamail.el" (12663 54771))
  5827. ;;; Generated autoloads from metamail.el
  5828.  
  5829. (autoload (quote metamail-interpret-header) "metamail" "\
  5830. Interpret a header part of a MIME message in current buffer.
  5831. Its body part is not interpreted at all." t nil)
  5832.  
  5833. (autoload (quote metamail-interpret-body) "metamail" "\
  5834. Interpret a body part of a MIME message in current buffer.
  5835. Optional argument VIEWMODE specifies the value of the
  5836. EMACS_VIEW_MODE environment variable (defaulted to 1).
  5837. Optional argument NODISPLAY non-nil means buffer is not
  5838. redisplayed as output is inserted.
  5839. Its header part is not interpreted at all." t nil)
  5840.  
  5841. (autoload (quote metamail-buffer) "metamail" "\
  5842. Process current buffer through `metamail'.
  5843. Optional argument VIEWMODE specifies the value of the
  5844. EMACS_VIEW_MODE environment variable (defaulted to 1).
  5845. Optional argument BUFFER specifies a buffer to be filled (nil
  5846. means current).
  5847. Optional argument NODISPLAY non-nil means buffer is not
  5848. redisplayed as output is inserted." t nil)
  5849.  
  5850. (autoload (quote metamail-region) "metamail" "\
  5851. Process current region through 'metamail'.
  5852. Optional argument VIEWMODE specifies the value of the
  5853. EMACS_VIEW_MODE environment variable (defaulted to 1).
  5854. Optional argument BUFFER specifies a buffer to be filled (nil
  5855. means current).
  5856. Optional argument NODISPLAY non-nil means buffer is not
  5857. redisplayed as output is inserted." t nil)
  5858.  
  5859. ;;;***
  5860.  
  5861. ;;;### (autoloads (mh-letter-mode mh-smail-other-window mh-smail-batch mh-smail) "mh-comp" "mh-comp.el" (12536 45574))
  5862. ;;; Generated autoloads from mh-comp.el
  5863.  
  5864. (autoload (quote mh-smail) "mh-comp" "\
  5865. Compose and send mail with the MH mail system.
  5866. This function is an entry point to mh-e, the Emacs front end
  5867. to the MH mail system.
  5868.  
  5869. See documentation of `\\[mh-send]' for more details on composing mail." t nil)
  5870.  
  5871. (autoload (quote mh-smail-batch) "mh-comp" "\
  5872. Set up a mail composition draft with the MH mail system.
  5873. This function is an entry point to mh-e, the Emacs front end
  5874. to the MH mail system.  This function does not prompt the user
  5875. for any header fields, and thus is suitable for use by programs
  5876. that want to create a mail buffer.
  5877. Users should use `\\[mh-smail]' to compose mail." nil nil)
  5878.  
  5879. (autoload (quote mh-smail-other-window) "mh-comp" "\
  5880. Compose and send mail in other window with the MH mail system.
  5881. This function is an entry point to mh-e, the Emacs front end
  5882. to the MH mail system.
  5883.  
  5884. See documentation of `\\[mh-send]' for more details on composing mail." t nil)
  5885.  
  5886. (autoload (quote mh-letter-mode) "mh-comp" "\
  5887. Mode for composing letters in mh-e.\\<mh-letter-mode-map>
  5888. When you have finished composing, type \\[mh-send-letter] to send the message
  5889. using the MH mail handling system.
  5890. See the documentation for \\[mh-edit-mhn] for information on composing MIME
  5891. messages.
  5892.  
  5893. \\{mh-letter-mode-map}
  5894.  
  5895. Variables controlling this mode (defaults in parentheses):
  5896.  
  5897.  mh-delete-yanked-msg-window (nil)
  5898.     If non-nil, \\[mh-yank-cur-msg] will delete any windows displaying
  5899.     the yanked message.
  5900.  
  5901.  mh-yank-from-start-of-msg (t)
  5902.     If non-nil, \\[mh-yank-cur-msg] will include the entire message.
  5903.     If `body', just yank the body (no header).
  5904.     If nil, only the portion of the message following the point will be yanked.
  5905.     If there is a region, this variable is ignored.
  5906.  
  5907.  mh-ins-buf-prefix (\"> \")
  5908.     String to insert before each non-blank line of a message as it is
  5909.     inserted in a draft letter.
  5910.  
  5911.  mh-signature-file-name (\"~/.signature\")
  5912.     File to be inserted into message by \\[mh-insert-signature].
  5913.  
  5914. Upon invoking mh-letter-mode, text-mode-hook and mh-letter-mode-hook are
  5915. invoked with no args, if those values are non-nil." t nil)
  5916.  
  5917. ;;;***
  5918.  
  5919. ;;;### (autoloads (mh-version mh-rmail) "mh-e" "mh-e.el" (12705 64721))
  5920. ;;; Generated autoloads from mh-e.el
  5921.  
  5922. (autoload (quote mh-rmail) "mh-e" "\
  5923. Inc(orporate) new mail with MH, or, with arg, scan an MH mail folder.
  5924. This function is an entry point to mh-e, the Emacs front end
  5925. to the MH mail system." t nil)
  5926.  
  5927. (autoload (quote mh-version) "mh-e" "\
  5928. Display version information about mh-e and the MH mail handling system." t nil)
  5929.  
  5930. ;;;***
  5931.  
  5932. ;;;### (autoloads nil "mh-mime" "mh-mime.el" (12536 45574))
  5933. ;;; Generated autoloads from mh-mime.el
  5934.  
  5935. (defvar mh-mime-content-types (quote (("text/plain") ("text/richtext") ("multipart/mixed") ("multipart/alternative") ("multipart/digest") ("multipart/parallel") ("message/rfc822") ("message/partial") ("message/external-body") ("application/octet-stream") ("application/postscript") ("image/jpeg") ("image/gif") ("audio/basic") ("video/mpeg"))) "\
  5936. Legal MIME content types.  See documentation for \\[mh-edit-mhn].")
  5937.  
  5938. ;;;***
  5939.  
  5940. ;;;### (autoloads nil "mh-utils" "mh-utils.el" (12755 33294))
  5941. ;;; Generated autoloads from mh-utils.el
  5942.  
  5943. (put (quote mh-progs) (quote risky-local-variable) t)
  5944.  
  5945. (put (quote mh-lib) (quote risky-local-variable) t)
  5946.  
  5947. ;;;***
  5948.  
  5949. ;;;### (autoloads (convert-mocklisp-buffer) "mlconvert" "mlconvert.el" (12536 45574))
  5950. ;;; Generated autoloads from mlconvert.el
  5951.  
  5952. (autoload (quote convert-mocklisp-buffer) "mlconvert" "\
  5953. Convert buffer of Mocklisp code to real Lisp that GNU Emacs can run." t nil)
  5954.  
  5955. ;;;***
  5956.  
  5957. ;;;### (autoloads (modula-2-mode) "modula2" "modula2.el" (12524 26272))
  5958. ;;; Generated autoloads from modula2.el
  5959.  
  5960. (autoload (quote modula-2-mode) "modula2" "\
  5961. This is a mode intended to support program development in Modula-2.
  5962. All control constructs of Modula-2 can be reached by typing C-c
  5963. followed by the first character of the construct.
  5964. \\<m2-mode-map>
  5965.   \\[m2-begin] begin         \\[m2-case] case
  5966.   \\[m2-definition] definition    \\[m2-else] else
  5967.   \\[m2-for] for           \\[m2-header] header
  5968.   \\[m2-if] if            \\[m2-module] module
  5969.   \\[m2-loop] loop          \\[m2-or] or
  5970.   \\[m2-procedure] procedure     Control-c Control-w with
  5971.   \\[m2-record] record        \\[m2-stdio] stdio
  5972.   \\[m2-type] type          \\[m2-until] until
  5973.   \\[m2-var] var           \\[m2-while] while
  5974.   \\[m2-export] export        \\[m2-import] import
  5975.   \\[m2-begin-comment] begin-comment \\[m2-end-comment] end-comment
  5976.   \\[suspend-emacs] suspend Emacs     \\[m2-toggle] toggle
  5977.   \\[m2-compile] compile           \\[m2-next-error] next-error
  5978.   \\[m2-link] link
  5979.  
  5980.    `m2-indent' controls the number of spaces for each indentation.
  5981.    `m2-compile-command' holds the command to compile a Modula-2 program.
  5982.    `m2-link-command' holds the command to link a Modula-2 program." t nil)
  5983.  
  5984. ;;;***
  5985.  
  5986. ;;;### (autoloads (mpuz) "mpuz" "mpuz.el" (12536 45574))
  5987. ;;; Generated autoloads from mpuz.el
  5988.  
  5989. (autoload (quote mpuz) "mpuz" "\
  5990. Multiplication puzzle with GNU Emacs." t nil)
  5991.  
  5992. ;;;***
  5993.  
  5994. ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "nnfolder.el" (12756 29868))
  5995. ;;; Generated autoloads from nnfolder.el
  5996.  
  5997. (autoload (quote nnfolder-generate-active-file) "nnfolder" "\
  5998. Look for mbox folders in the nnfolder directory and make them into groups." t nil)
  5999.  
  6000. ;;;***
  6001.  
  6002. ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "nnkiboze.el" (12752 26144))
  6003. ;;; Generated autoloads from nnkiboze.el
  6004.  
  6005. (autoload (quote nnkiboze-generate-groups) "nnkiboze" "\
  6006. Usage: emacs -batch -l nnkiboze -f nnkiboze-generate-groups
  6007. Finds out what articles are to be part of the nnkiboze groups." t nil)
  6008.  
  6009. ;;;***
  6010.  
  6011. ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "nnml.el" (12756 29670))
  6012. ;;; Generated autoloads from nnml.el
  6013.  
  6014. (autoload (quote nnml-generate-nov-databases) "nnml" "\
  6015. Generate nov databases in all nnml directories." t nil)
  6016.  
  6017. ;;;***
  6018.  
  6019. ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) "nnsoup" "nnsoup.el" (12752 26882))
  6020. ;;; Generated autoloads from nnsoup.el
  6021.  
  6022. (autoload (quote nnsoup-pack-replies) "nnsoup" "\
  6023. Make an outbound package of SOUP replies." t nil)
  6024.  
  6025. (autoload (quote nnsoup-set-variables) "nnsoup" "\
  6026. Use the SOUP methods for posting news and mailing mail." t nil)
  6027.  
  6028. (autoload (quote nnsoup-revert-variables) "nnsoup" "\
  6029. Revert posting and mailing methods to the standard Emacs methods." t nil)
  6030.  
  6031. ;;;***
  6032.  
  6033. ;;;### (autoloads (disable-command enable-command disabled-command-hook) "novice" "novice.el" (12536 45574))
  6034. ;;; Generated autoloads from novice.el
  6035.  
  6036. (setq disabled-command-hook (quote disabled-command-hook))
  6037.  
  6038. (autoload (quote disabled-command-hook) "novice" nil nil nil)
  6039.  
  6040. (autoload (quote enable-command) "novice" "\
  6041. Allow COMMAND to be executed without special confirmation from now on.
  6042. The user's .emacs file is altered so that this will apply
  6043. to future sessions." t nil)
  6044.  
  6045. (autoload (quote disable-command) "novice" "\
  6046. Require special confirmation to execute COMMAND from now on.
  6047. The user's .emacs file is altered so that this will apply
  6048. to future sessions." t nil)
  6049.  
  6050. ;;;***
  6051.  
  6052. ;;;### (autoloads (nroff-mode) "nroff-mode" "nroff-mode.el" (12536 45574))
  6053. ;;; Generated autoloads from nroff-mode.el
  6054.  
  6055. (autoload (quote nroff-mode) "nroff-mode" "\
  6056. Major mode for editing text intended for nroff to format.
  6057. \\{nroff-mode-map}
  6058. Turning on Nroff mode runs `text-mode-hook', then `nroff-mode-hook'.
  6059. Also, try `nroff-electric-mode', for automatically inserting
  6060. closing requests for requests that are used in matched pairs." t nil)
  6061.  
  6062. ;;;***
  6063.  
  6064. ;;;### (autoloads (edit-options list-options) "options" "options.el" (12536 45574))
  6065. ;;; Generated autoloads from options.el
  6066.  
  6067. (autoload (quote list-options) "options" "\
  6068. Display a list of Emacs user options, with values and documentation." t nil)
  6069.  
  6070. (autoload (quote edit-options) "options" "\
  6071. Edit a list of Emacs user option values.
  6072. Selects a buffer containing such a list,
  6073. in which there are commands to set the option values.
  6074. Type \\[describe-mode] in that buffer for a list of commands." t nil)
  6075.  
  6076. ;;;***
  6077.  
  6078. ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" (12536 45574))
  6079. ;;; Generated autoloads from outline.el
  6080.  
  6081. (autoload (quote outline-mode) "outline" "\
  6082. Set major mode for editing outlines with selective display.
  6083. Headings are lines which start with asterisks: one for major headings,
  6084. two for subheadings, etc.  Lines not starting with asterisks are body lines.
  6085.  
  6086. Body text or subheadings under a heading can be made temporarily
  6087. invisible, or visible again.  Invisible lines are attached to the end
  6088. of the heading, so they move with it, if the line is killed and yanked
  6089. back.  A heading with text hidden under it is marked with an ellipsis (...).
  6090.  
  6091. Commands:\\<outline-mode-map>
  6092. \\[outline-next-visible-heading]   outline-next-visible-heading      move by visible headings
  6093. \\[outline-previous-visible-heading]   outline-previous-visible-heading
  6094. \\[outline-forward-same-level]   outline-forward-same-level        similar but skip subheadings
  6095. \\[outline-backward-same-level]   outline-backward-same-level
  6096. \\[outline-up-heading]   outline-up-heading            move from subheading to heading
  6097.  
  6098. \\[hide-body]    make all text invisible (not headings).
  6099. \\[show-all]    make everything in buffer visible.
  6100.  
  6101. The remaining commands are used when point is on a heading line.
  6102. They apply to some of the body or subheadings of that heading.
  6103. \\[hide-subtree]   hide-subtree    make body and subheadings invisible.
  6104. \\[show-subtree]   show-subtree    make body and subheadings visible.
  6105. \\[show-children]   show-children    make direct subheadings visible.
  6106.          No effect on body, or subheadings 2 or more levels down.
  6107.          With arg N, affects subheadings N levels down.
  6108. \\[hide-entry]       make immediately following body invisible.
  6109. \\[show-entry]       make it visible.
  6110. \\[hide-leaves]       make body under heading and under its subheadings invisible.
  6111.              The subheadings remain visible.
  6112. \\[show-branches]  make all subheadings at all levels visible.
  6113.  
  6114. The variable `outline-regexp' can be changed to control what is a heading.
  6115. A line is a heading if `outline-regexp' matches something at the
  6116. beginning of the line.  The longer the match, the deeper the level.
  6117.  
  6118. Turning on outline mode calls the value of `text-mode-hook' and then of
  6119. `outline-mode-hook', if they are non-nil." t nil)
  6120.  
  6121. (autoload (quote outline-minor-mode) "outline" "\
  6122. Toggle Outline minor mode.
  6123. With arg, turn Outline minor mode on if arg is positive, off otherwise.
  6124. See the command `outline-mode' for more information on this mode." t nil)
  6125.  
  6126. ;;;***
  6127.  
  6128. ;;;### (autoloads (show-paren-mode) "paren" "paren.el" (12605 9129))
  6129. ;;; Generated autoloads from paren.el
  6130.  
  6131. (autoload (quote show-paren-mode) "paren" "\
  6132. Toggle Show Paren mode.
  6133. With prefix ARG, turn Show Paren mode on if and only if ARG is positive.
  6134. Returns the new status of Show Paren mode (non-nil means on).
  6135.  
  6136. When Show Paren mode is enabled, any matching parenthesis is highlighted
  6137. after `show-paren-delay' seconds of Emacs idle time." t nil)
  6138.  
  6139. ;;;***
  6140.  
  6141. ;;;### (autoloads (pascal-mode) "pascal" "pascal.el" (12695 25037))
  6142. ;;; Generated autoloads from pascal.el
  6143.  
  6144. (autoload (quote pascal-mode) "pascal" "\
  6145. Major mode for editing Pascal code. \\<pascal-mode-map>
  6146. TAB indents for Pascal code.  Delete converts tabs to spaces as it moves back.
  6147.  
  6148. \\[pascal-complete-word] completes the word around current point with respect to position in code
  6149. \\[pascal-show-completions] shows all possible completions at this point.
  6150.  
  6151. Other useful functions are:
  6152.  
  6153. \\[pascal-mark-defun]    - Mark function.
  6154. \\[pascal-insert-block]    - insert begin ... end;
  6155. \\[pascal-star-comment]    - insert (* ... *)
  6156. \\[pascal-comment-area]    - Put marked area in a comment, fixing nested comments.
  6157. \\[pascal-uncomment-area]    - Uncomment an area commented with \\[pascal-comment-area].
  6158. \\[pascal-beg-of-defun]    - Move to beginning of current function.
  6159. \\[pascal-end-of-defun]    - Move to end of current function.
  6160. \\[pascal-goto-defun]    - Goto function prompted for in the minibuffer.
  6161. \\[pascal-outline]    - Enter pascal-outline-mode (see also pascal-outline).
  6162.  
  6163. Variables controlling indentation/edit style:
  6164.  
  6165.  pascal-indent-level      (default 3)
  6166.     Indentation of Pascal statements with respect to containing block.
  6167.  pascal-case-indent       (default 2)
  6168.     Indentation for case statements.
  6169.  pascal-auto-newline      (default nil)
  6170.     Non-nil means automatically newline after semicolons and the punctuation
  6171.     mark after an end.
  6172.  pascal-tab-always-indent (default t)
  6173.     Non-nil means TAB in Pascal mode should always reindent the current line,
  6174.     regardless of where in the line point is when the TAB command is used.
  6175.  pascal-auto-endcomments  (default t)
  6176.     Non-nil means a comment { ... } is set after the ends which ends cases and
  6177.     functions. The name of the function or case will be set between the braces.
  6178.  pascal-auto-lineup       (default t)
  6179.     List of contexts where auto lineup of :'s or ='s hould be done.
  6180.  
  6181. See also the user variables pascal-type-keywords, pascal-start-keywords and
  6182. pascal-separator-keywords.
  6183.  
  6184. Turning on Pascal mode calls the value of the variable pascal-mode-hook with
  6185. no args, if that value is non-nil." t nil)
  6186.  
  6187. ;;;***
  6188.  
  6189. ;;;### (autoloads (pc-bindings-mode) "pc-mode" "pc-mode.el" (12704 56926))
  6190. ;;; Generated autoloads from pc-mode.el
  6191.  
  6192. (autoload (quote pc-bindings-mode) "pc-mode" "\
  6193. Set up certain key bindings for PC compatibility.
  6194. The keys affected are:
  6195. Delete (and its variants) delete forward instead of backward.
  6196. C-Backspace kills backward a word (as C-Delete normally would).
  6197. M-Backspace does undo.
  6198. Home and End move to beginning and end of line
  6199. C-Home and C-End move to beginning and end of buffer.
  6200. C-Escape does list-buffers." t nil)
  6201.  
  6202. ;;;***
  6203.  
  6204. ;;;### (autoloads (pc-selection-mode) "pc-select" "pc-select.el" (12599 57094))
  6205. ;;; Generated autoloads from pc-select.el
  6206.  
  6207. (autoload (quote pc-selection-mode) "pc-select" "\
  6208. Change mark behaviour to emulate motif, MAC or MS-Windows cut and paste style.
  6209.  
  6210. This mode will switch on delete-selection-mode and
  6211. transient-mark-mode.
  6212.  
  6213. The cursor keys (and others) are bound to new functions
  6214. which will modify the status of the mark. It will be
  6215. possible to select regions with shift-cursorkeys. All this
  6216. tries to emulate the look-and-feel of GUIs like motif,
  6217. the MAC GUI or MS-Windows (sorry for the last one)." t nil)
  6218.  
  6219. ;;;***
  6220.  
  6221. ;;;### (autoloads (perl-mode) "perl-mode" "perl-mode.el" (12587 31317))
  6222. ;;; Generated autoloads from perl-mode.el
  6223.  
  6224. (autoload (quote perl-mode) "perl-mode" "\
  6225. Major mode for editing Perl code.
  6226. Expression and list commands understand all Perl brackets.
  6227. Tab indents for Perl code.
  6228. Comments are delimited with # ... \\n.
  6229. Paragraphs are separated by blank lines only.
  6230. Delete converts tabs to spaces as it moves back.
  6231. \\{perl-mode-map}
  6232. Variables controlling indentation style:
  6233.  perl-tab-always-indent
  6234.     Non-nil means TAB in Perl mode should always indent the current line,
  6235.     regardless of where in the line point is when the TAB command is used.
  6236.  perl-tab-to-comment
  6237.     Non-nil means that for lines which don't need indenting, TAB will
  6238.     either delete an empty comment, indent an existing comment, move 
  6239.     to end-of-line, or if at end-of-line already, create a new comment.
  6240.  perl-nochange
  6241.     Lines starting with this regular expression are not auto-indented.
  6242.  perl-indent-level
  6243.     Indentation of Perl statements within surrounding block.
  6244.     The surrounding block's indentation is the indentation
  6245.     of the line on which the open-brace appears.
  6246.  perl-continued-statement-offset
  6247.     Extra indentation given to a substatement, such as the
  6248.     then-clause of an if or body of a while.
  6249.  perl-continued-brace-offset
  6250.     Extra indentation given to a brace that starts a substatement.
  6251.     This is in addition to `perl-continued-statement-offset'.
  6252.  perl-brace-offset
  6253.     Extra indentation for line if it starts with an open brace.
  6254.  perl-brace-imaginary-offset
  6255.     An open brace following other text is treated as if it were
  6256.     this far to the right of the start of its line.
  6257.  perl-label-offset
  6258.     Extra indentation for line that is a label.
  6259.  
  6260. Various indentation styles:       K&R  BSD  BLK  GNU  LW
  6261.   perl-indent-level                5    8    0    2    4
  6262.   perl-continued-statement-offset  5    8    4    2    4
  6263.   perl-continued-brace-offset      0    0    0    0   -4
  6264.   perl-brace-offset               -5   -8    0    0    0
  6265.   perl-brace-imaginary-offset      0    0    4    0    0
  6266.   perl-label-offset               -5   -8   -2   -2   -2
  6267.  
  6268. Turning on Perl mode runs the normal hook `perl-mode-hook'." t nil)
  6269.  
  6270. ;;;***
  6271.  
  6272. ;;;### (autoloads (picture-mode) "picture" "picture.el" (12578 16858))
  6273. ;;; Generated autoloads from picture.el
  6274.  
  6275. (autoload (quote picture-mode) "picture" "\
  6276. Switch to Picture mode, in which a quarter-plane screen model is used.
  6277. Printing characters replace instead of inserting themselves with motion
  6278. afterwards settable by these commands:
  6279.   C-c <      Move left after insertion.
  6280.   C-c >      Move right after insertion.
  6281.   C-c ^      Move up after insertion.
  6282.   C-c .      Move down after insertion.
  6283.   C-c `      Move northwest (nw) after insertion.
  6284.   C-c '      Move northeast (ne) after insertion.
  6285.   C-c /      Move southwest (sw) after insertion.
  6286.   C-c \\   Move southeast (se) after insertion.
  6287. The current direction is displayed in the mode line.  The initial
  6288. direction is right.  Whitespace is inserted and tabs are changed to
  6289. spaces when required by movement.  You can move around in the buffer
  6290. with these commands:
  6291.   \\[picture-move-down]      Move vertically to SAME column in previous line.
  6292.   \\[picture-move-up]      Move vertically to SAME column in next line.
  6293.   \\[picture-end-of-line]      Move to column following last non-whitespace character.
  6294.   \\[picture-forward-column]      Move right inserting spaces if required.
  6295.   \\[picture-backward-column]      Move left changing tabs to spaces if required.
  6296.   C-c C-f Move in direction of current picture motion.
  6297.   C-c C-b Move in opposite direction of current picture motion.
  6298.   Return  Move to beginning of next line.
  6299. You can edit tabular text with these commands:
  6300.   M-Tab      Move to column beneath (or at) next interesting character.
  6301.         `Indents' relative to a previous line.
  6302.   Tab      Move to next stop in tab stop list.
  6303.   C-c Tab Set tab stops according to context of this line.
  6304.         With ARG resets tab stops to default (global) value.
  6305.         See also documentation of variable    picture-tab-chars
  6306.         which defines \"interesting character\".  You can manually
  6307.         change the tab stop list with command \\[edit-tab-stops].
  6308. You can manipulate text with these commands:
  6309.   C-d      Clear (replace) ARG columns after point without moving.
  6310.   C-c C-d Delete char at point - the command normally assigned to C-d.
  6311.   \\[picture-backward-clear-column]  Clear (replace) ARG columns before point, moving back over them.
  6312.   \\[picture-clear-line]      Clear ARG lines, advancing over them.     The cleared
  6313.         text is saved in the kill ring.
  6314.   \\[picture-open-line]      Open blank line(s) beneath current line.
  6315. You can manipulate rectangles with these commands:
  6316.   C-c C-k Clear (or kill) a rectangle and save it.
  6317.   C-c C-w Like C-c C-k except rectangle is saved in named register.
  6318.   C-c C-y Overlay (or insert) currently saved rectangle at point.
  6319.   C-c C-x Like C-c C-y except rectangle is taken from named register.
  6320.   \\[copy-rectangle-to-register]   Copies a rectangle to a register.
  6321.   \\[advertised-undo]   Can undo effects of rectangle overlay commands
  6322.         commands if invoked soon enough.
  6323. You can return to the previous mode with:
  6324.   C-c C-c Which also strips trailing whitespace from every line.
  6325.         Stripping is suppressed by supplying an argument.
  6326.  
  6327. Entry to this mode calls the value of  picture-mode-hook  if non-nil.
  6328.  
  6329. Note that Picture mode commands will work outside of Picture mode, but
  6330. they are not defaultly assigned to keys." t nil)
  6331.  
  6332. (defalias (quote edit-picture) (quote picture-mode))
  6333.  
  6334. ;;;***
  6335.  
  6336. ;;;### (autoloads (pp-eval-last-sexp pp-eval-expression pp) "pp" "pp.el" (12742 53103))
  6337. ;;; Generated autoloads from pp.el
  6338.  
  6339. (autoload (quote pp) "pp" "\
  6340. Output the pretty-printed representation of OBJECT, any Lisp object.
  6341. Quoting characters are printed when needed to make output that `read'
  6342. can handle, whenever this is possible.
  6343. Output stream is STREAM, or value of `standard-output' (which see)." nil nil)
  6344.  
  6345. (autoload (quote pp-eval-expression) "pp" "\
  6346. Evaluate EXPRESSION and pretty-print value into a new display buffer.
  6347. If the pretty-printed value fits on one line, the message line is used
  6348. instead.  Value is also consed on to front of variable  values 's
  6349. value." t nil)
  6350.  
  6351. (autoload (quote pp-eval-last-sexp) "pp" "\
  6352. Run `pp-eval-expression' on sexp before point (which see).
  6353. With argument, pretty-print output into current buffer.
  6354. Ignores leading comment characters." t nil)
  6355.  
  6356. ;;;***
  6357.  
  6358. ;;;### (autoloads (run-prolog prolog-mode) "prolog" "prolog.el" (12536 45574))
  6359. ;;; Generated autoloads from prolog.el
  6360.  
  6361. (autoload (quote prolog-mode) "prolog" "\
  6362. Major mode for editing Prolog code for Prologs.
  6363. Blank lines and `%%...' separate paragraphs.  `%'s start comments.
  6364. Commands:
  6365. \\{prolog-mode-map}
  6366. Entry to this mode calls the value of `prolog-mode-hook'
  6367. if that value is non-nil." t nil)
  6368.  
  6369. (autoload (quote run-prolog) "prolog" "\
  6370. Run an inferior Prolog process, input and output via buffer *prolog*." t nil)
  6371.  
  6372. ;;;***
  6373.  
  6374. ;;;### (autoloads (ps-despool ps-spool-region-with-faces ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces ps-print-buffer) "ps-print" "ps-print.el" (12787 44357))
  6375. ;;; Generated autoloads from ps-print.el
  6376.  
  6377. (autoload (quote ps-print-buffer) "ps-print" "\
  6378. Generate and print a PostScript image of the buffer.
  6379.  
  6380. When called with a numeric prefix argument (C-u), prompts the user for
  6381. the name of a file to save the PostScript image in, instead of sending
  6382. it to the printer.
  6383.  
  6384. More specifically, the FILENAME argument is treated as follows: if it
  6385. is nil, send the image to the printer.  If FILENAME is a string, save
  6386. the PostScript image in a file with that name.  If FILENAME is a
  6387. number, prompt the user for the name of the file to save in." t nil)
  6388.  
  6389. (autoload (quote ps-print-buffer-with-faces) "ps-print" "\
  6390. Generate and print a PostScript image of the buffer.
  6391. Like `ps-print-buffer', but includes font, color, and underline
  6392. information in the generated image.  This command works only if you
  6393. are using a window system, so it has a way to determine color values." t nil)
  6394.  
  6395. (autoload (quote ps-print-region) "ps-print" "\
  6396. Generate and print a PostScript image of the region.
  6397. Like `ps-print-buffer', but prints just the current region." t nil)
  6398.  
  6399. (autoload (quote ps-print-region-with-faces) "ps-print" "\
  6400. Generate and print a PostScript image of the region.
  6401. Like `ps-print-region', but includes font, color, and underline
  6402. information in the generated image.  This command works only if you
  6403. are using a window system, so it has a way to determine color values." t nil)
  6404.  
  6405. (autoload (quote ps-spool-buffer) "ps-print" "\
  6406. Generate and spool a PostScript image of the buffer.
  6407. Like `ps-print-buffer' except that the PostScript image is saved in a
  6408. local buffer to be sent to the printer later.
  6409.  
  6410. Use the command `ps-despool' to send the spooled images to the printer." t nil)
  6411.  
  6412. (autoload (quote ps-spool-buffer-with-faces) "ps-print" "\
  6413. Generate and spool a PostScript image of the buffer.
  6414. Like `ps-spool-buffer', but includes font, color, and underline
  6415. information in the generated image.  This command works only if you
  6416. are using a window system, so it has a way to determine color values.
  6417.  
  6418. Use the command `ps-despool' to send the spooled images to the printer." t nil)
  6419.  
  6420. (autoload (quote ps-spool-region) "ps-print" "\
  6421. Generate a PostScript image of the region and spool locally.
  6422. Like `ps-spool-buffer', but spools just the current region.
  6423.  
  6424. Use the command `ps-despool' to send the spooled images to the printer." t nil)
  6425.  
  6426. (autoload (quote ps-spool-region-with-faces) "ps-print" "\
  6427. Generate a PostScript image of the region and spool locally.
  6428. Like `ps-spool-region', but includes font, color, and underline
  6429. information in the generated image.  This command works only if you
  6430. are using a window system, so it has a way to determine color values.
  6431.  
  6432. Use the command `ps-despool' to send the spooled images to the printer." t nil)
  6433.  
  6434. (autoload (quote ps-despool) "ps-print" "\
  6435. Send the spooled PostScript to the printer.
  6436.  
  6437. When called with a numeric prefix argument (C-u), prompt the user for
  6438. the name of a file to save the spooled PostScript in, instead of sending
  6439. it to the printer.
  6440.  
  6441. More specifically, the FILENAME argument is treated as follows: if it
  6442. is nil, send the image to the printer.  If FILENAME is a string, save
  6443. the PostScript image in a file with that name.  If FILENAME is a
  6444. number, prompt the user for the name of the file to save in." t nil)
  6445.  
  6446. ;;;***
  6447.  
  6448. ;;;### (autoloads (remote-compile) "rcompile" "rcompile.el" (12536 45574))
  6449. ;;; Generated autoloads from rcompile.el
  6450.  
  6451. (autoload (quote remote-compile) "rcompile" "\
  6452. Compile the the current buffer's directory on HOST.  Log in as USER.
  6453. See \\[compile]." t nil)
  6454.  
  6455. ;;;***
  6456.  
  6457. ;;;### (autoloads (clear-rectangle string-rectangle open-rectangle insert-rectangle yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle delete-rectangle) "rect" "rect.el" (12536 45574))
  6458. ;;; Generated autoloads from rect.el
  6459.  
  6460. (autoload (quote delete-rectangle) "rect" "\
  6461. Delete (don't save) text in rectangle with point and mark as corners.
  6462. The same range of columns is deleted in each line starting with the line
  6463. where the region begins and ending with the line where the region ends." t nil)
  6464.  
  6465. (autoload (quote delete-extract-rectangle) "rect" "\
  6466. Delete contents of rectangle and return it as a list of strings.
  6467. Arguments START and END are the corners of the rectangle.
  6468. The value is list of strings, one for each line of the rectangle." nil nil)
  6469.  
  6470. (autoload (quote extract-rectangle) "rect" "\
  6471. Return contents of rectangle with corners at START and END.
  6472. Value is list of strings, one for each line of the rectangle." nil nil)
  6473.  
  6474. (autoload (quote kill-rectangle) "rect" "\
  6475. Delete rectangle with corners at point and mark; save as last killed one.
  6476. Calling from program, supply two args START and END, buffer positions.
  6477. But in programs you might prefer to use `delete-extract-rectangle'." t nil)
  6478.  
  6479. (autoload (quote yank-rectangle) "rect" "\
  6480. Yank the last killed rectangle with upper left corner at point." t nil)
  6481.  
  6482. (autoload (quote insert-rectangle) "rect" "\
  6483. Insert text of RECTANGLE with upper left corner at point.
  6484. RECTANGLE's first line is inserted at point, its second
  6485. line is inserted at a point vertically under point, etc.
  6486. RECTANGLE should be a list of strings.
  6487. After this command, the mark is at the upper left corner
  6488. and point is at the lower right corner." nil nil)
  6489.  
  6490. (autoload (quote open-rectangle) "rect" "\
  6491. Blank out rectangle with corners at point and mark, shifting text right.
  6492. The text previously in the region is not overwritten by the blanks,
  6493. but instead winds up to the right of the rectangle." t nil)
  6494.  
  6495. (autoload (quote string-rectangle) "rect" "\
  6496. Insert STRING on each line of the region-rectangle, shifting text right.
  6497. The left edge of the rectangle specifies the column for insertion.
  6498. This command does not delete or overwrite any existing text.
  6499.  
  6500. Called from a program, takes three args; START, END and STRING." t nil)
  6501.  
  6502. (autoload (quote clear-rectangle) "rect" "\
  6503. Blank out rectangle with corners at point and mark.
  6504. The text previously in the region is overwritten by the blanks.
  6505. When called from a program, requires two args which specify the corners." t nil)
  6506.  
  6507. ;;;***
  6508.  
  6509. ;;;### (autoloads (reporter-submit-bug-report) "reporter" "reporter.el" (12761 52437))
  6510. ;;; Generated autoloads from reporter.el
  6511.  
  6512. (defvar mail-user-agent (quote sendmail-user-agent) "\
  6513. *Your preference for a mail composition package.
  6514. Various Emacs Lisp packages (e.g. reporter) require you to compose an
  6515. outgoing email message.  As there are several such packages available
  6516. for Emacs, you can indicate your preference by setting this variable.
  6517.  
  6518. Valid values currently are:
  6519.  
  6520.     'sendmail-user-agent -- use Emacs built-in Mail package
  6521.     'vm-user-agent       -- use Kyle Jones' VM package
  6522.     'mh-e-user-agent     -- use the Emacs interface to the MH mail system
  6523.  
  6524. Additional valid symbols may be available; check with the author of
  6525. your package for details.")
  6526.  
  6527. (autoload (quote reporter-submit-bug-report) "reporter" nil nil nil)
  6528.  
  6529. ;;;***
  6530.  
  6531. ;;;### (autoloads (reposition-window) "reposition" "reposition.el" (12536 45574))
  6532. ;;; Generated autoloads from reposition.el
  6533.  
  6534. (autoload (quote reposition-window) "reposition" "\
  6535. Make the current definition and/or comment visible.
  6536. Further invocations move it to the top of the window or toggle the
  6537. visibility of comments that precede it.
  6538.   Point is left unchanged unless prefix ARG is supplied.
  6539.   If the definition is fully onscreen, it is moved to the top of the
  6540. window.  If it is partly offscreen, the window is scrolled to get the
  6541. definition (or as much as will fit) onscreen, unless point is in a comment
  6542. which is also partly offscreen, in which case the scrolling attempts to get
  6543. as much of the comment onscreen as possible.
  6544.   Initially `reposition-window' attempts to make both the definition and
  6545. preceding comments visible.  Further invocations toggle the visibility of
  6546. the comment lines.
  6547.   If ARG is non-nil, point may move in order to make the whole defun
  6548. visible (if only part could otherwise be made so), to make the defun line
  6549. visible (if point is in code and it could not be made so, or if only
  6550. comments, including the first comment line, are visible), or to make the
  6551. first comment line visible (if point is in a comment)." t nil)
  6552.  (define-key esc-map "\C-l" 'reposition-window)
  6553.  
  6554. ;;;***
  6555.  
  6556. ;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (12679 50658))
  6557. ;;; Generated autoloads from resume.el
  6558.  
  6559. (autoload (quote resume-suspend-hook) "resume" "\
  6560. Clear out the file used for transmitting args when Emacs resumes." nil nil)
  6561.  
  6562. ;;;***
  6563.  
  6564. ;;;### (autoloads (make-ring ring-p) "ring" "ring.el" (12536 45574))
  6565. ;;; Generated autoloads from ring.el
  6566.  
  6567. (autoload (quote ring-p) "ring" "\
  6568. Returns t if X is a ring; nil otherwise." nil nil)
  6569.  
  6570. (autoload (quote make-ring) "ring" "\
  6571. Make a ring that can contain SIZE elements." nil nil)
  6572.  
  6573. ;;;***
  6574.  
  6575. ;;;### (autoloads (rlogin) "rlogin" "rlogin.el" (12748 51349))
  6576. ;;; Generated autoloads from rlogin.el
  6577.  (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)")
  6578.  
  6579. (autoload (quote rlogin) "rlogin" "\
  6580. Open a network login connection via `rlogin' with args INPUT-ARGS.
  6581. INPUT-ARGS should start with a host name; it may also contain
  6582. other arguments for `rlogin'.
  6583.  
  6584. Input is sent line-at-a-time to the remote connection.
  6585.  
  6586. Communication with the remote host is recorded in a buffer `*rlogin-HOST*'
  6587. \(or `*rlogin-USER@HOST*' if the remote username differs).
  6588. If a prefix argument is given and the buffer `*rlogin-HOST*' already exists,
  6589. a new buffer with a different connection will be made.
  6590.  
  6591. When called from a program, if the optional second argument BUFFER is
  6592. a string or buffer, it specifies the buffer to use.
  6593.  
  6594. The variable `rlogin-program' contains the name of the actual program to
  6595. run.  It can be a relative or absolute path.
  6596.  
  6597. The variable `rlogin-explicit-args' is a list of arguments to give to
  6598. the rlogin when starting.  They are added after any arguments given in
  6599. INPUT-ARGS.
  6600.  
  6601. If the default value of `rlogin-directory-tracking-mode' is t, then the
  6602. default directory in that buffer is set to a remote (FTP) file name to
  6603. access your home directory on the remote machine.  Occasionally this causes
  6604. an error, if you cannot access the home directory on that machine.  This
  6605. error is harmless as long as you don't try to use that default directory.
  6606.  
  6607. If `rlogin-directory-tracking-mode' is neither t nor nil, then the default
  6608. directory is initially set up to your (local) home directory.
  6609. This is useful if the remote machine and your local machine
  6610. share the same files via NFS.  This is the default.
  6611.  
  6612. If you wish to change directory tracking styles during a session, use the
  6613. function `rlogin-directory-tracking-mode' rather than simply setting the
  6614. variable." t nil)
  6615.  
  6616. ;;;***
  6617.  
  6618. ;;;### (autoloads (rmail-input rmail-mode rmail) "rmail" "rmail.el" (12807 37215))
  6619. ;;; Generated autoloads from rmail.el
  6620.  
  6621. (defvar rmail-dont-reply-to-names nil "\
  6622. *A regexp specifying names to prune of reply to messages.
  6623. A value of nil means exclude your own name only.")
  6624.  
  6625. (defvar rmail-default-dont-reply-to-names "info-" "\
  6626. A regular expression specifying part of the value of the default value of
  6627. the variable `rmail-dont-reply-to-names', for when the user does not set
  6628. `rmail-dont-reply-to-names' explicitly.  (The other part of the default
  6629. value is the user's name.)
  6630. It is useful to set this variable in the site customization file.")
  6631.  
  6632. (defvar rmail-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^received:\\|^x400-originator:\\|^x400-recipients:\\|^x400-received:\\|^x400-mts-identifier:\\|^x400-content-type:\\|^\\(resent-\\|\\)message-id:\\|^summary-line:\\|^resent-date:\\|^nntp-posting-host:" "\
  6633. *Regexp to match Header fields that Rmail should normally hide.")
  6634.  
  6635. (defvar rmail-displayed-headers nil "\
  6636. *Regexp to match Header fields that Rmail should display.
  6637. If nil, display all header fields except those matched by
  6638. `rmail-ignored-headers'.")
  6639.  
  6640. (defvar rmail-retry-ignored-headers nil "\
  6641. *Headers that should be stripped when retrying a failed message.")
  6642.  
  6643. (defvar rmail-highlighted-headers "^From:\\|^Subject:" "\
  6644. *Regexp to match Header fields that Rmail should normally highlight.
  6645. A value of nil means don't highlight.
  6646. See also `rmail-highlight-face'.")
  6647.  
  6648. (defvar rmail-highlight-face nil "\
  6649. *Face used by Rmail for highlighting headers.")
  6650.  
  6651. (defvar rmail-delete-after-output nil "\
  6652. *Non-nil means automatically delete a message that is copied to a file.")
  6653.  
  6654. (defvar rmail-primary-inbox-list nil "\
  6655. *List of files which are inboxes for user's primary mail file `~/RMAIL'.
  6656. `nil' means the default, which is (\"/usr/spool/mail/$USER\")
  6657. \(the name varies depending on the operating system,
  6658. and the value of the environment variable MAIL overrides it).")
  6659.  
  6660. (defvar rmail-mail-new-frame nil "\
  6661. *Non-nil means Rmail makes a new frame for composing outgoing mail.")
  6662.  
  6663. (defvar rmail-secondary-file-directory "~/" "\
  6664. *Directory for additional secondary Rmail files.")
  6665.  
  6666. (defvar rmail-secondary-file-regexp "\\.xmail$" "\
  6667. *Regexp for which files are secondary Rmail files.")
  6668.  
  6669. (defvar rmail-mode-hook nil "\
  6670. List of functions to call when Rmail is invoked.")
  6671.  
  6672. (defvar rmail-get-new-mail-hook nil "\
  6673. List of functions to call when Rmail has retrieved new mail.")
  6674.  
  6675. (defvar rmail-show-message-hook nil "\
  6676. List of functions to call when Rmail displays a message.")
  6677.  
  6678. (defvar rmail-delete-message-hook nil "\
  6679. List of functions to call when Rmail deletes a message.
  6680. When the hooks are called, the message has been marked deleted but is
  6681. still the current message in the Rmail buffer.")
  6682.  
  6683. (autoload (quote rmail) "rmail" "\
  6684. Read and edit incoming mail.
  6685. Moves messages into file named by `rmail-file-name' (a babyl format file)
  6686.  and edits that file in RMAIL Mode.
  6687. Type \\[describe-mode] once editing that file, for a list of RMAIL commands.
  6688.  
  6689. May be called with file name as argument; then performs rmail editing on
  6690. that file, but does not copy any new mail into the file.
  6691. Interactively, if you supply a prefix argument, then you
  6692. have a chance to specify a file name with the minibuffer.
  6693.  
  6694. If `rmail-display-summary' is non-nil, make a summary for this RMAIL file." t nil)
  6695.  
  6696. (autoload (quote rmail-mode) "rmail" "\
  6697. Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files.
  6698. All normal editing commands are turned off.
  6699. Instead, these commands are available:
  6700.  
  6701. \\[rmail-beginning-of-message]    Move point to front of this message (same as \\[beginning-of-buffer]).
  6702. \\[scroll-up]    Scroll to next screen of this message.
  6703. \\[scroll-down]    Scroll to previous screen of this message.
  6704. \\[rmail-next-undeleted-message]    Move to Next non-deleted message.
  6705. \\[rmail-previous-undeleted-message]    Move to Previous non-deleted message.
  6706. \\[rmail-next-message]    Move to Next message whether deleted or not.
  6707. \\[rmail-previous-message]    Move to Previous message whether deleted or not.
  6708. \\[rmail-first-message]    Move to the first message in Rmail file.
  6709. \\[rmail-last-message]    Move to the last message in Rmail file.
  6710. \\[rmail-show-message]    Jump to message specified by numeric position in file.
  6711. \\[rmail-search]    Search for string and show message it is found in.
  6712. \\[rmail-delete-forward]    Delete this message, move to next nondeleted.
  6713. \\[rmail-delete-backward]    Delete this message, move to previous nondeleted.
  6714. \\[rmail-undelete-previous-message]    Undelete message.  Tries current message, then earlier messages
  6715.     till a deleted message is found.
  6716. \\[rmail-edit-current-message]    Edit the current message.  \\[rmail-cease-edit] to return to Rmail.
  6717. \\[rmail-expunge]    Expunge deleted messages.
  6718. \\[rmail-expunge-and-save]    Expunge and save the file.
  6719. \\[rmail-quit]       Quit Rmail: expunge, save, then switch to another buffer.
  6720. \\[save-buffer] Save without expunging.
  6721. \\[rmail-get-new-mail]    Move new mail from system spool directory into this file.
  6722. \\[rmail-mail]    Mail a message (same as \\[mail-other-window]).
  6723. \\[rmail-continue]    Continue composing outgoing message started before.
  6724. \\[rmail-reply]    Reply to this message.  Like \\[rmail-mail] but initializes some fields.
  6725. \\[rmail-retry-failure]    Send this message again.  Used on a mailer failure message.
  6726. \\[rmail-forward]    Forward this message to another user.
  6727. \\[rmail-output-to-rmail-file]       Output this message to an Rmail file (append it).
  6728. \\[rmail-output]    Output this message to a Unix-format mail file (append it).
  6729. \\[rmail-input]    Input Rmail file.  Run Rmail on that file.
  6730. \\[rmail-add-label]    Add label to message.  It will be displayed in the mode line.
  6731. \\[rmail-kill-label]    Kill label.  Remove a label from current message.
  6732. \\[rmail-next-labeled-message]   Move to Next message with specified label
  6733.           (label defaults to last one specified).
  6734.           Standard labels: filed, unseen, answered, forwarded, deleted.
  6735.           Any other label is present only if you add it with \\[rmail-add-label].
  6736. \\[rmail-previous-labeled-message]   Move to Previous message with specified label
  6737. \\[rmail-summary]    Show headers buffer, with a one line summary of each message.
  6738. \\[rmail-summary-by-labels]    Summarize only messages with particular label(s).
  6739. \\[rmail-summary-by-recipients]   Summarize only messages with particular recipient(s).
  6740. \\[rmail-summary-by-regexp]   Summarize only messages with particular regexp(s).
  6741. \\[rmail-summary-by-topic]   Summarize only messages with subject line regexp(s).
  6742. \\[rmail-toggle-header]    Toggle display of complete header." t nil)
  6743.  
  6744. (autoload (quote rmail-input) "rmail" "\
  6745. Run Rmail on file FILENAME." t nil)
  6746.  
  6747. ;;;***
  6748.  
  6749. ;;;### (autoloads nil "rmailsum" "rmailsum.el" (12774 62518))
  6750. ;;; Generated autoloads from rmailsum.el
  6751.  
  6752. (defvar rmail-summary-scroll-between-messages t "\
  6753. *Non-nil means Rmail summary scroll commands move between messages.")
  6754.  
  6755. ;;;***
  6756.  
  6757. ;;;### (autoloads (news-post-news) "rnewspost" "rnewspost.el" (12587 31371))
  6758. ;;; Generated autoloads from rnewspost.el
  6759.  
  6760. (autoload (quote news-post-news) "rnewspost" "\
  6761. Begin editing a new USENET news article to be posted.
  6762. Type \\[describe-mode] once editing the article to get a list of commands." t nil)
  6763.  
  6764. ;;;***
  6765.  
  6766. ;;;### (autoloads (toggle-rot13-mode rot13-other-window) "rot13" "rot13.el" (12536 45574))
  6767. ;;; Generated autoloads from rot13.el
  6768.  
  6769. (autoload (quote rot13-other-window) "rot13" "\
  6770. Display current buffer in rot 13 in another window.
  6771. To terminate the rot13 display, delete that window." t nil)
  6772.  
  6773. (autoload (quote toggle-rot13-mode) "rot13" "\
  6774. Toggle the use of rot 13 encoding for the current window." t nil)
  6775.  
  6776. ;;;***
  6777.  
  6778. ;;;### (autoloads (resize-minibuffer-mode) "rsz-mini" "rsz-mini.el" (12536 45574))
  6779. ;;; Generated autoloads from rsz-mini.el
  6780.  
  6781. (defvar resize-minibuffer-mode nil "\
  6782. *If non-`nil', resize the minibuffer so its entire contents are visible.")
  6783.  
  6784. (defvar resize-minibuffer-window-max-height nil "\
  6785. *Maximum size the minibuffer window is allowed to become.
  6786. If less than 1 or not a number, the limit is the height of the frame in
  6787. which the active minibuffer window resides.")
  6788.  
  6789. (defvar resize-minibuffer-window-exactly t "\
  6790. *Allow making minibuffer exactly the size to display all its contents.
  6791. If `nil', the minibuffer window can temporarily increase in size but
  6792. never get smaller while it is active.  Any other value allows exact
  6793. resizing.")
  6794.  
  6795. (defvar resize-minibuffer-frame nil "\
  6796. *Allow changing the frame height of minibuffer frames.
  6797. If non-`nil' and the active minibuffer is the sole window in its frame,
  6798. allow changing the frame height.")
  6799.  
  6800. (defvar resize-minibuffer-frame-max-height nil "\
  6801. *Maximum size the minibuffer frame is allowed to become.
  6802. If less than 1 or not a number, there is no limit.")
  6803.  
  6804. (defvar resize-minibuffer-frame-exactly t "\
  6805. *Allow making minibuffer frame exactly the size to display all its contents.
  6806. If `nil', the minibuffer frame can temporarily increase in size but
  6807. never get smaller while it is active.  Any other value allows exact
  6808. resizing.")
  6809.  
  6810. (autoload (quote resize-minibuffer-mode) "rsz-mini" "\
  6811. Enable or disable resize-minibuffer mode.
  6812. A negative prefix argument disables this mode.  A positive argument or
  6813. argument of 0 enables it.
  6814.  
  6815. When this minor mode is enabled, the minibuffer is dynamically resized to
  6816. contain the entire region of text put in it as you type.
  6817.  
  6818. The variable `resize-minibuffer-mode' is set to t or nil depending on
  6819. whether this mode is active or not.
  6820.  
  6821. The maximum height to which the minibuffer can grow is controlled by the
  6822. variable `resize-minibuffer-window-max-height'.
  6823.  
  6824. The variable `resize-minibuffer-window-exactly' determines whether the
  6825. minibuffer window should ever be shrunk to make it no larger than needed to
  6826. display its contents.
  6827.  
  6828. When using a window system, it is possible for a minibuffer to be the sole
  6829. window in a frame.  Since that window is already its maximum size, the only
  6830. way to make more text visible at once is to increase the size of the frame.
  6831. The variable `resize-minibuffer-frame' controls whether this should be
  6832. done.  The variables `resize-minibuffer-frame-max-height' and
  6833. `resize-minibuffer-frame-exactly' are analogous to their window
  6834. counterparts." t nil)
  6835.  
  6836. ;;;***
  6837.  
  6838. ;;;### (autoloads (scheme-mode) "scheme" "scheme.el" (12763 19530))
  6839. ;;; Generated autoloads from scheme.el
  6840.  
  6841. (autoload (quote scheme-mode) "scheme" "\
  6842. Major mode for editing Scheme code.
  6843. Editing commands are similar to those of lisp-mode.
  6844.  
  6845. In addition, if an inferior Scheme process is running, some additional
  6846. commands will be defined, for evaluating expressions and controlling
  6847. the interpreter, and the state of the process will be displayed in the
  6848. modeline of all Scheme buffers.  The names of commands that interact
  6849. with the Scheme process start with \"xscheme-\".  For more information
  6850. see the documentation for xscheme-interaction-mode.
  6851.  
  6852. Commands:
  6853. Delete converts tabs to spaces as it moves back.
  6854. Blank lines separate paragraphs.  Semicolons start comments.
  6855. \\{scheme-mode-map}
  6856. Entry to this mode calls the value of scheme-mode-hook
  6857. if that value is non-nil." t nil)
  6858.  
  6859. ;;;***
  6860.  
  6861. ;;;### (autoloads (gnus-score-mode) "score-mode" "score-mode.el" (12758 49973))
  6862. ;;; Generated autoloads from score-mode.el
  6863.  
  6864. (autoload (quote gnus-score-mode) "score-mode" "\
  6865. Mode for editing Gnus score files.
  6866. This mode is an extended emacs-lisp mode.
  6867.  
  6868. \\{gnus-score-mode-map}" t nil)
  6869.  
  6870. ;;;***
  6871.  
  6872. ;;;### (autoloads (scribe-mode) "scribe" "scribe.el" (12536 45574))
  6873. ;;; Generated autoloads from scribe.el
  6874.  
  6875. (autoload (quote scribe-mode) "scribe" "\
  6876. Major mode for editing files of Scribe (a text formatter) source.
  6877. Scribe-mode is similar text-mode, with a few extra commands added.
  6878. \\{scribe-mode-map}
  6879.  
  6880. Interesting variables:
  6881.  
  6882. scribe-fancy-paragraphs
  6883.   Non-nil makes Scribe mode use a different style of paragraph separation.
  6884.  
  6885. scribe-electric-quote
  6886.   Non-nil makes insert of double quote use `` or '' depending on context.
  6887.  
  6888. scribe-electric-parenthesis
  6889.   Non-nil makes an open-parenthesis char (one of `([<{')
  6890.   automatically insert its close if typed after an @Command form." t nil)
  6891.  
  6892. ;;;***
  6893.  
  6894. ;;;### (autoloads (mail-other-frame mail-other-window mail mail-mode) "sendmail" "sendmail.el" (12755 38587))
  6895. ;;; Generated autoloads from sendmail.el
  6896.  
  6897. (defvar mail-from-style (quote angles) "\
  6898. *Specifies how \"From:\" fields look.
  6899.  
  6900. If `nil', they contain just the return address like:
  6901.     king@grassland.com
  6902. If `parens', they look like:
  6903.     king@grassland.com (Elvis Parsley)
  6904. If `angles', they look like:
  6905.     Elvis Parsley <king@grassland.com>")
  6906.  
  6907. (defvar mail-self-blind nil "\
  6908. Non-nil means insert BCC to self in messages to be sent.
  6909. This is done when the message is initialized,
  6910. so you can remove or alter the BCC field to override the default.")
  6911.  
  6912. (defvar mail-interactive nil "\
  6913. Non-nil means when sending a message wait for and display errors.
  6914. nil means let mailer mail back a message to report errors.")
  6915.  
  6916. (defvar mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\
  6917. Delete these headers from old message when it's inserted in a reply.")
  6918.  
  6919. (defvar send-mail-function (quote sendmail-send-it) "\
  6920. Function to call to send the current buffer as mail.
  6921. The headers should be delimited by a line whose contents
  6922. match the variable `mail-header-separator'.")
  6923.  
  6924. (defvar mail-header-separator "--text follows this line--" "\
  6925. *Line used to separate headers from text in messages being composed.")
  6926.  
  6927. (defvar mail-archive-file-name nil "\
  6928. *Name of file to write all outgoing messages in, or nil for none.
  6929. This can be an inbox file or an Rmail file.")
  6930.  
  6931. (defvar mail-default-reply-to nil "\
  6932. *Address to insert as default Reply-to field of outgoing messages.
  6933. If nil, it will be initialized from the REPLYTO environment variable
  6934. when you first send mail.")
  6935.  
  6936. (defvar mail-alias-file nil "\
  6937. *If non-nil, the name of a file to use instead of `/usr/lib/aliases'.
  6938. This file defines aliases to be expanded by the mailer; this is a different
  6939. feature from that of defining aliases in `.mailrc' to be expanded in Emacs.
  6940. This variable has no effect unless your system uses sendmail as its mailer.")
  6941.  
  6942. (defvar mail-personal-alias-file "~/.mailrc" "\
  6943. *If non-nil, the name of the user's personal mail alias file.
  6944. This file typically should be in same format as the `.mailrc' file used by
  6945. the `Mail' or `mailx' program.
  6946. This file need not actually exist.")
  6947.  
  6948. (defvar mail-signature nil "\
  6949. *Text inserted at end of mail buffer when a message is initialized.
  6950. If t, it means to insert the contents of the file `mail-signature-file'.")
  6951.  
  6952. (autoload (quote mail-mode) "sendmail" "\
  6953. Major mode for editing mail to be sent.
  6954. Like Text Mode but with these additional commands:
  6955. C-c C-s  mail-send (send the message)    C-c C-c  mail-send-and-exit
  6956. C-c C-f  move to a header field (and create it if there isn't):
  6957.      C-c C-f C-t  move to To:    C-c C-f C-s  move to Subject:
  6958.      C-c C-f C-c  move to CC:    C-c C-f C-b  move to BCC:
  6959.      C-c C-f C-f  move to FCC:
  6960. C-c C-t  mail-text (move to beginning of message text).
  6961. C-c C-w  mail-signature (insert `mail-signature-file' file).
  6962. C-c C-y  mail-yank-original (insert current message, in Rmail).
  6963. C-c C-q  mail-fill-yanked-message (fill what was yanked).
  6964. C-c C-v  mail-sent-via (add a Sent-via field for each To or CC)." t nil)
  6965.  
  6966. (autoload (quote mail) "sendmail" "\
  6967. Edit a message to be sent.  Prefix arg means resume editing (don't erase).
  6968. When this function returns, the buffer `*mail*' is selected.
  6969. The value is t if the message was newly initialized; otherwise, nil.
  6970.  
  6971. Optionally, the signature file `mail-signature-file' can be inserted at the
  6972. end; see the variable `mail-signature'.
  6973.  
  6974. \\<mail-mode-map>
  6975. While editing message, type \\[mail-send-and-exit] to send the message and exit.
  6976.  
  6977. Various special commands starting with C-c are available in sendmail mode
  6978. to move to message header fields:
  6979. \\{mail-mode-map}
  6980.  
  6981. If `mail-self-blind' is non-nil, a BCC to yourself is inserted
  6982. when the message is initialized.
  6983.  
  6984. If `mail-default-reply-to' is non-nil, it should be an address (a string);
  6985. a Reply-to: field with that address is inserted.
  6986.  
  6987. If `mail-archive-file-name' is non-nil, an FCC field with that file name
  6988. is inserted.
  6989.  
  6990. The normal hook `mail-setup-hook' is run after the message is
  6991. initialized.  It can add more default fields to the message.
  6992.  
  6993. When calling from a program, the first argument if non-nil says
  6994. not to erase the existing contents of the `*mail*' buffer.
  6995.  
  6996. The second through fifth arguments,
  6997.  TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil
  6998.  the initial contents of those header fields.
  6999.  These arguments should not have final newlines.
  7000. The sixth argument REPLYBUFFER is a buffer whose contents
  7001.  should be yanked if the user types C-c C-y.
  7002. The seventh argument ACTIONS is a list of actions to take
  7003.  if/when the message is sent.  Each action looks like (FUNCTION . ARGS);
  7004.  when the message is sent, we apply FUNCTION to ARGS.
  7005.  This is how Rmail arranges to mark messages `answered'." t nil)
  7006.  
  7007. (autoload (quote mail-other-window) "sendmail" "\
  7008. Like `mail' command, but display mail buffer in another window." t nil)
  7009.  
  7010. (autoload (quote mail-other-frame) "sendmail" "\
  7011. Like `mail' command, but display mail buffer in another frame." t nil)
  7012.  (define-key ctl-x-map "m" 'mail)
  7013.  (define-key ctl-x-4-map "m" 'mail-other-window)
  7014.  (define-key ctl-x-5-map "m" 'mail-other-frame)
  7015.  (add-hook 'same-window-buffer-names "*mail*")
  7016.  
  7017. ;;;***
  7018.  
  7019. ;;;### (autoloads (server-start) "server" "server.el" (12596 58821))
  7020. ;;; Generated autoloads from server.el
  7021.  
  7022. (autoload (quote server-start) "server" "\
  7023. Allow this Emacs process to be a server for client processes.
  7024. This starts a server communications subprocess through which
  7025. client \"editors\" can send your editing commands to this Emacs job.
  7026. To use the server, set up the program `emacsclient' in the
  7027. Emacs distribution as your standard \"editor\".
  7028.  
  7029. Prefix arg means just kill any existing server communications subprocess." t nil)
  7030.  
  7031. ;;;***
  7032.  
  7033. ;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "sgml-mode.el" (12739 17407))
  7034. ;;; Generated autoloads from sgml-mode.el
  7035.  
  7036. (autoload (quote sgml-mode) "sgml-mode" "\
  7037. Major mode for editing SGML documents.
  7038. Makes > match <.  Makes / blink matching /.
  7039. Keys <, &, SPC within <>, \" and ' can be electric depending on
  7040. `sgml-quick-keys'.
  7041.  
  7042. Do \\[describe-variable] sgml- SPC to see available variables.
  7043.  
  7044. Use \\[sgml-validate] to validate your document with an SGML parser.
  7045. \\{sgml-mode-map}" t nil)
  7046.  
  7047. (autoload (quote html-mode) "sgml-mode" "\
  7048. Major mode based on SGML mode for editing HTML documents.
  7049. This allows inserting skeleton costructs used in hypertext documents with
  7050. completion.  See below for an introduction to HTML.  Use
  7051. \\[browse-url-of-buffer] to see how this comes out.  See also `sgml-mode' on
  7052. which this is based.
  7053.  
  7054. Do \\[describe-variable] html- SPC and \\[describe-variable] sgml- SPC to see available variables.
  7055.  
  7056. To write fairly well formatted pages you only need to know few things.  Most
  7057. browsers have a function to read the source code of the page being seen, so
  7058. you can imitate various tricks.  Here's a very short HTML primer which you
  7059. can also view with a browser to see what happens:
  7060.  
  7061. <title>A Title Describing Contents</title> should be on every page.  Pages can
  7062. have <h1>Very Major Headlines</h1> through <h6>Very Minor Headlines</h6>
  7063. <hr> Parts can be separated with horizontal rules.
  7064.  
  7065. <p>Paragraphs only need an opening tag.  Line breaks and multiple spaces are
  7066. ignored unless the text is <pre>preformatted.</pre>  Text can be marked as
  7067. <b>bold</b>, <i>italic</i> or <u>underlined</u> using the normal  M-g  or
  7068. Edit/Text Properties/Face commands.
  7069.  
  7070. Pages can have <a name=\"SOMENAME\">named points</a> and can link other points
  7071. to them with <a href=\"#SOMENAME\">see also somename</a>.  In the same way <a
  7072. href=\"URL\">see also URL</a> where URL is a filename relative to current
  7073. directory or something like http://www.cs.indiana.edu/elisp/w3/docs.html.
  7074.  
  7075. Images in many formats can be inlined with <img src=\"URL\">.
  7076.  
  7077. If you mainly create your own documents, `sgml-specials' might be interesting.
  7078. But note that some HTML 2 browsers can't handle '.  To work around that
  7079. do:
  7080.  
  7081. \(eval-after-load \"sgml-mode\" '(aset sgml-char-names ?' nil))
  7082. \\{html-mode-map}" t nil)
  7083.  
  7084. ;;;***
  7085.  
  7086. ;;;### (autoloads (sh-mode) "sh-script" "sh-script.el" (12778 42738))
  7087. ;;; Generated autoloads from sh-script.el
  7088.  
  7089. (put (quote sh-mode) (quote mode-class) (quote special))
  7090.  
  7091. (autoload (quote sh-mode) "sh-script" "\
  7092. Major mode for editing shell scripts.
  7093. This mode works for many shells, since they all have roughly the same syntax,
  7094. as far as commands, arguments, variables, pipes, comments etc. are concerned.
  7095. Unless the file's magic number indicates the shell, your usual shell is
  7096. assumed.  Since filenames rarely give a clue, they are not further analyzed.
  7097.  
  7098. This mode adapts to the variations between shells (see `sh-set-shell') by
  7099. means of an inheritance based feature lookup (see `sh-feature').  This
  7100. mechanism applies to all variables (including skeletons) that pertain to
  7101. shell-specific features.
  7102.  
  7103. The default style of this mode is that of Rosenblatt's Korn shell book.
  7104. The syntax of the statements varies with the shell being used.  The
  7105. following commands are available, based on the current shell's syntax:
  7106.  
  7107. \\[sh-case]     case statement
  7108. \\[sh-for]     for loop
  7109. \\[sh-function]     function definition
  7110. \\[sh-if]     if statement
  7111. \\[sh-indexed-loop]     indexed loop from 1 to n
  7112. \\[sh-while-getopts]     while getopts loop
  7113. \\[sh-repeat]     repeat loop
  7114. \\[sh-select]     select loop
  7115. \\[sh-until]     until loop
  7116. \\[sh-while]     while loop
  7117.  
  7118. \\[backward-delete-char-untabify]     Delete backward one position, even if it was a tab.
  7119. \\[sh-newline-and-indent]     Delete unquoted space and indent new line same as this one.
  7120. \\[sh-end-of-command]     Go to end of successive commands.
  7121. \\[sh-beginning-of-command]     Go to beginning of successive commands.
  7122. \\[sh-set-shell]     Set this buffer's shell, and maybe its magic number.
  7123. \\[sh-execute-region]     Have optional header and region be executed in a subshell.
  7124.  
  7125. \\[sh-maybe-here-document]     Without prefix, following an unquoted < inserts here document.
  7126. {, (, [, ', \", `
  7127.     Unless quoted with \\, insert the pairs {}, (), [], or '', \"\", ``.
  7128.  
  7129. If you generally program a shell different from your login shell you can
  7130. set `sh-shell-file' accordingly.  If your shell's file name doesn't correctly
  7131. indicate what shell it is use `sh-alias-alist' to translate.
  7132.  
  7133. If your shell gives error messages with line numbers, you can use \\[executable-interpret]
  7134. with your script for an edit-interpret-debug cycle." t nil)
  7135.  
  7136. (defalias (quote shell-script-mode) (quote sh-mode))
  7137.  
  7138. ;;;***
  7139.  
  7140. ;;;### (autoloads (list-load-path-shadows) "shadow" "shadow.el" (12788 55803))
  7141. ;;; Generated autoloads from shadow.el
  7142.  
  7143. (autoload (quote list-load-path-shadows) "shadow" "\
  7144. Display a list of Emacs Lisp files that shadow other files.
  7145.  
  7146. This function lists potential load-path problems.  Directories in the
  7147. `load-path' variable are searched, in order, for Emacs Lisp
  7148. files.  When a previously encountered file name is found again, a
  7149. message is displayed indicating that the later file is \"hidden\" by
  7150. the earlier.
  7151.  
  7152. For example, suppose `load-path' is set to
  7153.  
  7154. \(\"/usr/gnu/emacs/site-lisp\" \"/usr/gnu/emacs/share/emacs/19.30/lisp\")
  7155.  
  7156. and that each of these directories contains a file called XXX.el.  Then
  7157. XXX.el in the site-lisp directory is referred to by all of:
  7158. \(require 'XXX), (autoload .... \"XXX\"), (load-library \"XXX\") etc.
  7159.  
  7160. The first XXX.el file prevents emacs from seeing the second (unless
  7161. the second is loaded explicitly via load-file).
  7162.  
  7163. When not intended, such shadowings can be the source of subtle
  7164. problems.  For example, the above situation may have arisen because the
  7165. XXX package was not distributed with versions of emacs prior to
  7166. 19.30.  An emacs maintainer downloaded XXX from elsewhere and installed
  7167. it.  Later, XXX was updated and included in the emacs distribution.
  7168. Unless the emacs maintainer checks for this, the new version of XXX
  7169. will be hidden behind the old (which may no longer work with the new
  7170. emacs version).
  7171.  
  7172. This function performs these checks and flags all possible
  7173. shadowings.  Because a .el file may exist without a corresponding .elc
  7174. \(or vice-versa), these suffixes are essentially ignored.  A file
  7175. XXX.elc in an early directory (that does not contain XXX.el) is
  7176. considered to shadow a later file XXX.el, and vice-versa.
  7177.  
  7178. When run interactively, the shadowings (if any) are displayed in a
  7179. buffer called `*Shadows*'.  Shadowings are located by calling the
  7180. \(non-interactive) companion function, `find-emacs-lisp-shadows'." t nil)
  7181.  
  7182. ;;;***
  7183.  
  7184. ;;;### (autoloads (shell) "shell" "shell.el" (12801 12210))
  7185. ;;; Generated autoloads from shell.el
  7186.  
  7187. (defvar shell-prompt-pattern "^[^#$%>\n]*[#$%>] *" "\
  7188. Regexp to match prompts in the inferior shell.
  7189. Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
  7190. This variable is used to initialise `comint-prompt-regexp' in the 
  7191. shell buffer.
  7192.  
  7193. The pattern should probably not match more than one line.  If it does,
  7194. Shell mode may become confused trying to distinguish prompt from input
  7195. on lines which don't start with a prompt.
  7196.  
  7197. This is a fine thing to set in your `.emacs' file.")
  7198.  
  7199. (autoload (quote shell) "shell" "\
  7200. Run an inferior shell, with I/O through buffer *shell*.
  7201. If buffer exists but shell process is not running, make new shell.
  7202. If buffer exists and shell process is running, just switch to buffer `*shell*'.
  7203. Program used comes from variable `explicit-shell-file-name',
  7204.  or (if that is nil) from the ESHELL environment variable,
  7205.  or else from SHELL if there is no ESHELL.
  7206. If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
  7207.  (Note that this may lose due to a timing error if the shell
  7208.   discards input when it starts up.)
  7209. The buffer is put in Shell mode, giving commands for sending input
  7210. and controlling the subjobs of the shell.  See `shell-mode'.
  7211. See also the variable `shell-prompt-pattern'.
  7212.  
  7213. The shell file name (sans directories) is used to make a symbol name
  7214. such as `explicit-csh-args'.  If that symbol is a variable,
  7215. its value is used as a list of arguments when invoking the shell.
  7216. Otherwise, one argument `-i' is passed to the shell.
  7217.  
  7218. \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil)
  7219.  (add-hook 'same-window-buffer-names "*shell*")
  7220.  
  7221. ;;;***
  7222.  
  7223. ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy skeleton-proxy-new define-skeleton) "skeleton" "skeleton.el" (12752 13637))
  7224. ;;; Generated autoloads from skeleton.el
  7225.  
  7226. (defvar skeleton-filter (quote identity) "\
  7227. Function for transforming a skeleton proxy's aliases' variable value.")
  7228.  
  7229. (autoload (quote define-skeleton) "skeleton" "\
  7230. Define a user-configurable COMMAND that enters a statement skeleton.
  7231. DOCUMENTATION is that of the command, while the variable of the same name,
  7232. which contains the skeleton, has a documentation to that effect.
  7233. INTERACTOR and ELEMENT ... are as defined under `skeleton-insert'." nil (quote macro))
  7234.  
  7235. (autoload (quote skeleton-proxy-new) "skeleton" "\
  7236. Insert skeleton defined by variable of same name (see `skeleton-insert').
  7237. Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
  7238. If no ARG was given, but the region is visible, ARG defaults to -1 depending
  7239. on `skeleton-autowrap'.  An ARG of  M-0  will prevent this just for once.
  7240. This command can also be an abbrev expansion (3rd and 4th columns in
  7241. \\[edit-abbrevs]  buffer: \"\"  command-name).
  7242.  
  7243. When called as a function, optional first argument STR may also be a string
  7244. which will be the value of `str' whereas the skeleton's interactor is then
  7245. ignored." t nil)
  7246.  
  7247. (autoload (quote skeleton-proxy) "skeleton" "\
  7248. Insert skeleton defined by variable of same name (see `skeleton-insert').
  7249. Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
  7250. If no ARG was given, but the region is visible, ARG defaults to -1 depending
  7251. on `skeleton-autowrap'.  An ARG of  M-0  will prevent this just for once.
  7252. This command can also be an abbrev expansion (3rd and 4th columns in
  7253. \\[edit-abbrevs]  buffer: \"\"  command-name).
  7254.  
  7255. When called as a function, optional first argument STR may also be a string
  7256. which will be the value of `str' whereas the skeleton's interactor is then
  7257. ignored." t nil)
  7258.  
  7259. (autoload (quote skeleton-insert) "skeleton" "\
  7260. Insert the complex statement skeleton SKELETON describes very concisely.
  7261.  
  7262. With optional third REGIONS wrap first interesting point (`_') in skeleton
  7263. around next REGIONS words, if REGIONS is positive.  If REGIONS is negative,
  7264. wrap REGIONS preceding interregions into first REGIONS interesting positions
  7265. \(successive `_'s) in skeleton.  An interregion is the stretch of text between
  7266. two contiguous marked points.  If you marked A B C [] (where [] is the cursor)
  7267. in alphabetical order, the 3 interregions are simply the last 3 regions.  But
  7268. if you marked B A [] C, the interregions are B-A, A-[], []-C.
  7269.  
  7270. Optional fourth STR is the value for the variable `str' within the skeleton.
  7271. When this is non-`nil' the interactor gets ignored, and this should be a valid
  7272. skeleton element.
  7273.  
  7274. SKELETON is made up as (INTERACTOR ELEMENT ...).  INTERACTOR may be nil if
  7275. not needed, a prompt-string or an expression for complex read functions.
  7276.  
  7277. If ELEMENT is a string or a character it gets inserted (see also
  7278. `skeleton-transformation').  Other possibilities are:
  7279.  
  7280.     \\n    go to next line and indent according to mode
  7281.     _    interesting point, interregion here, point after termination
  7282.     >    indent line (or interregion if > _) according to major mode
  7283.     &    do next ELEMENT if previous moved point
  7284.     |    do next ELEMENT if previous didn't move point
  7285.     -num    delete num preceding characters (see `skeleton-untabify')
  7286.     resume:    skipped, continue here if quit is signaled
  7287.     nil    skipped
  7288.  
  7289. Further elements can be defined via `skeleton-further-elements'.  ELEMENT may
  7290. itself be a SKELETON with an INTERACTOR.  The user is prompted repeatedly for
  7291. different inputs.  The SKELETON is processed as often as the user enters a
  7292. non-empty string.  \\[keyboard-quit] terminates skeleton insertion, but
  7293. continues after `resume:' and positions at `_' if any.  If INTERACTOR in such
  7294. a subskeleton is a prompt-string which contains a \".. %s ..\" it is
  7295. formatted with `skeleton-subprompt'.  Such an INTERACTOR may also a list of
  7296. strings with the subskeleton being repeated once for each string.
  7297.  
  7298. Quoted Lisp expressions are evaluated evaluated for their side-effect.
  7299. Other Lisp expressions are evaluated and the value treated as above.
  7300. Note that expressions may not return `t' since this implies an
  7301. endless loop.  Modes can define other symbols by locally setting them
  7302. to any valid skeleton element.  The following local variables are
  7303. available:
  7304.  
  7305.     str    first time: read a string according to INTERACTOR
  7306.         then: insert previously read string once more
  7307.     help    help-form during interaction with the user or `nil'
  7308.     input    initial input (string or cons with index) while reading str
  7309.     v1, v2    local variables for memorizing anything you want
  7310.  
  7311. When done with skeleton, but before going back to `_'-point call
  7312. `skeleton-end-hook' if that is non-`nil'." nil nil)
  7313.  
  7314. (autoload (quote skeleton-pair-insert-maybe) "skeleton" "\
  7315. Insert the character you type ARG times.
  7316.  
  7317. With no ARG, if `skeleton-pair' is non-nil, pairing can occur.  If the region
  7318. is visible the pair is wrapped around it depending on `skeleton-autowrap'.
  7319. Else, if `skeleton-pair-on-word' is non-nil or we are not before or inside a
  7320. word, and if `skeleton-pair-filter' returns nil, pairing is performed.
  7321.  
  7322. If a match is found in `skeleton-pair-alist', that is inserted, else
  7323. the defaults are used.  These are (), [], {}, <> and `' for the
  7324. symmetrical ones, and the same character twice for the others." t nil)
  7325.  
  7326. ;;;***
  7327.  
  7328. ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset) "solar" "solar.el" (12673 26218))
  7329. ;;; Generated autoloads from solar.el
  7330.  
  7331. (defvar calendar-time-display-form (quote (12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")"))) "\
  7332. *The pseudo-pattern that governs the way a time of day is formatted.
  7333.  
  7334. A pseudo-pattern is a list of expressions that can involve the keywords
  7335. `12-hours', `24-hours', and `minutes',  all numbers in string form,
  7336. and `am-pm' and `time-zone',  both alphabetic strings.
  7337.  
  7338. For example, the form
  7339.  
  7340.   '(24-hours \":\" minutes
  7341.     (if time-zone \" (\") time-zone (if time-zone \")\"))
  7342.  
  7343. would give military-style times like `21:07 (UTC)'.")
  7344.  
  7345. (defvar calendar-latitude nil "\
  7346. *Latitude of `calendar-location-name' in degrees.
  7347.  
  7348. The value can be either a decimal fraction (one place of accuracy is
  7349. sufficient), + north, - south, such as 40.7 for New York City, or the value
  7350. can be a vector [degrees minutes north/south] such as [40 50 north] for New
  7351. York City.
  7352.  
  7353. This variable should be set in `site-start'.el.")
  7354.  
  7355. (defvar calendar-longitude nil "\
  7356. *Longitude of `calendar-location-name' in degrees.
  7357.  
  7358. The value can be either a decimal fraction (one place of accuracy is
  7359. sufficient), + east, - west, such as -73.9 for New York City, or the value
  7360. can be a vector [degrees minutes east/west] such as [73 55 west] for New
  7361. York City.
  7362.  
  7363. This variable should be set in `site-start'.el.")
  7364.  
  7365. (defvar calendar-location-name (quote (let ((float-output-format "%.1f")) (format "%s%s, %s%s" (if (numberp calendar-latitude) (abs calendar-latitude) (+ (aref calendar-latitude 0) (/ (aref calendar-latitude 1) 60.0))) (if (numberp calendar-latitude) (if (> calendar-latitude 0) "N" "S") (if (equal (aref calendar-latitude 2) (quote north)) "N" "S")) (if (numberp calendar-longitude) (abs calendar-longitude) (+ (aref calendar-longitude 0) (/ (aref calendar-longitude 1) 60.0))) (if (numberp calendar-longitude) (if (> calendar-longitude 0) "E" "W") (if (equal (aref calendar-longitude 2) (quote east)) "E" "W"))))) "\
  7366. *Expression evaluating to name of `calendar-longitude', calendar-latitude'.
  7367. For example, \"New York City\".  Default value is just the latitude, longitude
  7368. pair.
  7369.  
  7370. This variable should be set in `site-start'.el.")
  7371.  
  7372. (autoload (quote sunrise-sunset) "solar" "\
  7373. Local time of sunrise and sunset for today.  Accurate to a few seconds.
  7374. If called with an optional prefix argument, prompt for date.
  7375.  
  7376. If called with an optional double prefix argument, prompt for longitude,
  7377. latitude, time zone, and date, and always use standard time.
  7378.  
  7379. This function is suitable for execution in a .emacs file." t nil)
  7380.  
  7381. (autoload (quote solar-equinoxes-solstices) "solar" "\
  7382. *local* date and time of equinoxes and solstices, if visible in the calendar window.
  7383. Requires floating point." nil nil)
  7384.  
  7385. ;;;***
  7386.  
  7387. ;;;### (autoloads (solitaire) "solitaire" "solitaire.el" (12550 33885))
  7388. ;;; Generated autoloads from solitaire.el
  7389.  
  7390. (autoload (quote solitaire) "solitaire" "\
  7391. Play Solitaire.
  7392.  
  7393. To play Solitaire, type \\[solitaire].
  7394. \\<solitaire-mode-map>
  7395. Move around the board using the cursor keys.
  7396. Move stones using \\[solitaire-move] followed by a direction key.
  7397. Undo moves using \\[solitaire-undo].
  7398. Check for possible moves using \\[solitaire-do-check].
  7399. \(The variable solitaire-auto-eval controls whether to automatically
  7400. check after each move or undo)
  7401.  
  7402. What is Solitaire?
  7403.  
  7404. I don't know who invented this game, but it seems to be rather old and
  7405. it's origin seems be northern Africa.  Here's how to play:
  7406. Initially, the board will look similar to this:
  7407.  
  7408.     Le Solitaire             
  7409.     ============             
  7410.     
  7411.         o   o   o        
  7412.     
  7413.         o   o   o        
  7414.     
  7415.     o   o   o   o   o   o   o
  7416.     
  7417.     o   o   o   .   o   o   o
  7418.     
  7419.     o   o   o   o   o   o   o
  7420.     
  7421.         o   o   o        
  7422.     
  7423.         o   o   o        
  7424.  
  7425. Let's call the o's stones and the .'s holes.  One stone fits into one
  7426. hole.  As you can see, all holes but one are occupied by stones.  The
  7427. aim of the game is to get rid of all but one stone, leaving that last
  7428. one in the middle of the board if you're cool.
  7429.  
  7430. A stone can be moved if there is another stone next to it, and a hole
  7431. after that one.  Thus there must be three fields in a row, either
  7432. horizontally or vertically, up, down, left or right, which look like
  7433. this:  o  o  .
  7434.  
  7435. Then the first stone is moved to the hole, jumping over the second,
  7436. which therefore is taken away.  The above thus `evaluates' to:  .  .  o
  7437.  
  7438. That's all.  Here's the board after two moves:
  7439.  
  7440.         o   o   o        
  7441.     
  7442.         .   o   o        
  7443.     
  7444.     o   o   .   o   o   o   o
  7445.     
  7446.     o   .   o   o   o   o   o
  7447.     
  7448.     o   o   o   o   o   o   o
  7449.     
  7450.         o   o   o        
  7451.     
  7452.         o   o   o
  7453.  
  7454. Pick your favourite shortcuts:
  7455.  
  7456. \\{solitaire-mode-map}" t nil)
  7457.  
  7458. ;;;***
  7459.  
  7460. ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields sort-fields sort-numeric-fields sort-pages sort-paragraphs sort-lines sort-subr) "sort" "sort.el" (12536 45574))
  7461. ;;; Generated autoloads from sort.el
  7462.  
  7463. (autoload (quote sort-subr) "sort" "\
  7464. General text sorting routine to divide buffer into records and sort them.
  7465. Arguments are REVERSE NEXTRECFUN ENDRECFUN &optional STARTKEYFUN ENDKEYFUN.
  7466.  
  7467. We divide the accessible portion of the buffer into disjoint pieces
  7468. called sort records.  A portion of each sort record (perhaps all of
  7469. it) is designated as the sort key.  The records are rearranged in the
  7470. buffer in order by their sort keys.  The records may or may not be
  7471. contiguous.
  7472.  
  7473. Usually the records are rearranged in order of ascending sort key.
  7474. If REVERSE is non-nil, they are rearranged in order of descending sort key.
  7475.  
  7476. The next four arguments are functions to be called to move point
  7477. across a sort record.  They will be called many times from within sort-subr.
  7478.  
  7479. NEXTRECFUN is called with point at the end of the previous record.
  7480. It moves point to the start of the next record.
  7481. It should move point to the end of the buffer if there are no more records.
  7482. The first record is assumed to start at the position of point when sort-subr
  7483. is called.
  7484.  
  7485. ENDRECFUN is called with point within the record.
  7486. It should move point to the end of the record.
  7487.  
  7488. STARTKEYFUN moves from the start of the record to the start of the key.
  7489. It may return either a non-nil value to be used as the key, or
  7490. else the key is the substring between the values of point after
  7491. STARTKEYFUN and ENDKEYFUN are called.  If STARTKEYFUN is nil, the key
  7492. starts at the beginning of the record.
  7493.  
  7494. ENDKEYFUN moves from the start of the sort key to the end of the sort key.
  7495. ENDKEYFUN may be nil if STARTKEYFUN returns a value or if it would be the
  7496. same as ENDRECFUN." nil nil)
  7497.  
  7498. (autoload (quote sort-lines) "sort" "\
  7499. Sort lines in region alphabetically; argument means descending order.
  7500. Called from a program, there are three arguments:
  7501. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  7502.  
  7503. (autoload (quote sort-paragraphs) "sort" "\
  7504. Sort paragraphs in region alphabetically; argument means descending order.
  7505. Called from a program, there are three arguments:
  7506. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  7507.  
  7508. (autoload (quote sort-pages) "sort" "\
  7509. Sort pages in region alphabetically; argument means descending order.
  7510. Called from a program, there are three arguments:
  7511. REVERSE (non-nil means reverse order), BEG and END (region to sort)." t nil)
  7512.  
  7513. (autoload (quote sort-numeric-fields) "sort" "\
  7514. Sort lines in region numerically by the ARGth field of each line.
  7515. Fields are separated by whitespace and numbered from 1 up.
  7516. Specified field must contain a number in each line of the region.
  7517. With a negative arg, sorts by the ARGth field counted from the right.
  7518. Called from a program, there are three arguments:
  7519. FIELD, BEG and END.  BEG and END specify region to sort." t nil)
  7520.  
  7521. (autoload (quote sort-fields) "sort" "\
  7522. Sort lines in region lexicographically by the ARGth field of each line.
  7523. Fields are separated by whitespace and numbered from 1 up.
  7524. With a negative arg, sorts by the ARGth field counted from the right.
  7525. Called from a program, there are three arguments:
  7526. FIELD, BEG and END.  BEG and END specify region to sort." t nil)
  7527.  
  7528. (autoload (quote sort-regexp-fields) "sort" "\
  7529. Sort the region lexicographically as specified by RECORD-REGEXP and KEY.
  7530. RECORD-REGEXP specifies the textual units which should be sorted.
  7531.   For example, to sort lines RECORD-REGEXP would be \"^.*$\"
  7532. KEY specifies the part of each record (ie each match for RECORD-REGEXP)
  7533.   is to be used for sorting.
  7534.   If it is \"\\\\digit\" then the digit'th \"\\\\(...\\\\)\" match field from
  7535.   RECORD-REGEXP is used.
  7536.   If it is \"\\\\&\" then the whole record is used.
  7537.   Otherwise, it is a regular-expression for which to search within the record.
  7538. If a match for KEY is not found within a record then that record is ignored.
  7539.  
  7540. With a negative prefix arg sorts in reverse order.
  7541.  
  7542. For example: to sort lines in the region by the first word on each line
  7543.  starting with the letter \"f\",
  7544.  RECORD-REGEXP would be \"^.*$\" and KEY would be \"\\\\=\\<f\\\\w*\\\\>\"" t nil)
  7545.  
  7546. (autoload (quote sort-columns) "sort" "\
  7547. Sort lines in region alphabetically by a certain range of columns.
  7548. For the purpose of this command, the region includes
  7549. the entire line that point is in and the entire line the mark is in.
  7550. The column positions of point and mark bound the range of columns to sort on.
  7551. A prefix argument means sort into reverse order.
  7552.  
  7553. Note that `sort-columns' rejects text that contains tabs,
  7554. because tabs could be split across the specified columns
  7555. and it doesn't know how to handle that.  Also, when possible,
  7556. it uses the `sort' utility program, which doesn't understand tabs.
  7557. Use \\[untabify] to convert tabs to spaces before sorting." t nil)
  7558.  
  7559. (autoload (quote reverse-region) "sort" "\
  7560. Reverse the order of lines in a region.
  7561. From a program takes two point or marker arguments, BEG and END." t nil)
  7562.  
  7563. ;;;***
  7564.  
  7565. ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) "spell" "spell.el" (12536 45574))
  7566. ;;; Generated autoloads from spell.el
  7567.  
  7568. (put (quote spell-filter) (quote risky-local-variable) t)
  7569.  
  7570. (autoload (quote spell-buffer) "spell" "\
  7571. Check spelling of every word in the buffer.
  7572. For each incorrect word, you are asked for the correct spelling
  7573. and then put into a query-replace to fix some or all occurrences.
  7574. If you do not want to change a word, just give the same word
  7575. as its \"correct\" spelling; then the query replace is skipped." t nil)
  7576.  
  7577. (autoload (quote spell-word) "spell" "\
  7578. Check spelling of word at or before point.
  7579. If it is not correct, ask user for the correct spelling
  7580. and `query-replace' the entire buffer to substitute it." t nil)
  7581.  
  7582. (autoload (quote spell-region) "spell" "\
  7583. Like `spell-buffer' but applies only to region.
  7584. Used in a program, applies from START to END.
  7585. DESCRIPTION is an optional string naming the unit being checked:
  7586. for example, \"word\"." t nil)
  7587.  
  7588. (autoload (quote spell-string) "spell" "\
  7589. Check spelling of string supplied as argument." t nil)
  7590.  
  7591. ;;;***
  7592.  
  7593. ;;;### (autoloads (snarf-spooks spook) "spook" "spook.el" (12536 45574))
  7594. ;;; Generated autoloads from spook.el
  7595.  
  7596. (autoload (quote spook) "spook" "\
  7597. Adds that special touch of class to your outgoing mail." t nil)
  7598.  
  7599. (autoload (quote snarf-spooks) "spook" "\
  7600. Return a vector containing the lines from `spook-phrases-file'." nil nil)
  7601.  
  7602. ;;;***
  7603.  
  7604. ;;;### (autoloads (sc-cite-original) "supercite" "supercite.el" (12536 45574))
  7605. ;;; Generated autoloads from supercite.el
  7606.  
  7607. (autoload (quote sc-cite-original) "supercite" "\
  7608. Workhorse citing function which performs the initial citation.
  7609. This is callable from the various mail and news readers' reply
  7610. function according to the agreed upon standard.  See `\\[sc-describe]'
  7611. for more details.  `sc-cite-original' does not do any yanking of the
  7612. original message but it does require a few things:
  7613.  
  7614.      1) The reply buffer is the current buffer.
  7615.  
  7616.      2) The original message has been yanked and inserted into the
  7617.         reply buffer.
  7618.  
  7619.      3) Verbose mail headers from the original message have been
  7620.         inserted into the reply buffer directly before the text of the
  7621.         original message.
  7622.  
  7623.      4) Point is at the beginning of the verbose headers.
  7624.  
  7625.      5) Mark is at the end of the body of text to be cited.
  7626.  
  7627. For Emacs 19's, the region need not be active (and typically isn't
  7628. when this function is called.  Also, the hook `sc-pre-hook' is run
  7629. before, and `sc-post-hook' is run after the guts of this function." nil nil)
  7630.  
  7631. ;;;***
  7632.  
  7633. ;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (12536 45574))
  7634. ;;; Generated autoloads from tabify.el
  7635.  
  7636. (autoload (quote untabify) "tabify" "\
  7637. Convert all tabs in region to multiple spaces, preserving columns.
  7638. Called non-interactively, the region is specified by arguments
  7639. START and END, rather than by the position of point and mark.
  7640. The variable `tab-width' controls the spacing of tab stops." t nil)
  7641.  
  7642. (autoload (quote tabify) "tabify" "\
  7643. Convert multiple spaces in region to tabs when possible.
  7644. A group of spaces is partially replaced by tabs
  7645. when this can be done without changing the column they end at.
  7646. Called non-interactively, the region is specified by arguments
  7647. START and END, rather than by the position of point and mark.
  7648. The variable `tab-width' controls the spacing of tab stops." t nil)
  7649.  
  7650. ;;;***
  7651.  
  7652. ;;;### (autoloads (talk-connect) "talk" "talk.el" (12536 45574))
  7653. ;;; Generated autoloads from talk.el
  7654.  
  7655. (autoload (quote talk-connect) "talk" "\
  7656. Connect to display DISPLAY for the Emacs talk group." t nil)
  7657.  
  7658. ;;;***
  7659.  
  7660. ;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (12767 4318))
  7661. ;;; Generated autoloads from tar-mode.el
  7662.  
  7663. (autoload (quote tar-mode) "tar-mode" "\
  7664. Major mode for viewing a tar file as a dired-like listing of its contents.
  7665. You can move around using the usual cursor motion commands. 
  7666. Letters no longer insert themselves.
  7667. Type `e' to pull a file out of the tar file and into its own buffer;
  7668. or click mouse-2 on the file's line in the Tar mode buffer.
  7669. Type `c' to copy an entry from the tar file into another file on disk.
  7670.  
  7671. If you edit a sub-file of this archive (as with the `e' command) and 
  7672. save it with Control-x Control-s, the contents of that buffer will be 
  7673. saved back into the tar-file buffer; in this way you can edit a file 
  7674. inside of a tar archive without extracting it and re-archiving it.
  7675.  
  7676. See also: variables `tar-update-datestamp' and `tar-anal-blocksize'.
  7677. \\{tar-mode-map}" nil nil)
  7678.  
  7679. ;;;***
  7680.  
  7681. ;;;### (autoloads (tcl-mode) "tcl-mode" "tcl-mode.el" (12761 19256))
  7682. ;;; Generated autoloads from tcl-mode.el
  7683.  
  7684. (autoload (quote tcl-mode) "tcl-mode" "\
  7685. Major mode for editing tcl scripts.
  7686. The following keys are bound:
  7687. \\{tcl-mode-map}
  7688. " t nil)
  7689.  
  7690. ;;;***
  7691.  
  7692. ;;;### (autoloads (rsh telnet) "telnet" "telnet.el" (12536 45574))
  7693. ;;; Generated autoloads from telnet.el
  7694.  (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)")
  7695.  
  7696. (autoload (quote telnet) "telnet" "\
  7697. Open a network login connection to host named HOST (a string).
  7698. Communication with HOST is recorded in a buffer `*telnet-HOST*'.
  7699. Normally input is edited in Emacs and sent a line at a time." t nil)
  7700.  (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)")
  7701.  
  7702. (autoload (quote rsh) "telnet" "\
  7703. Open a network login connection to host named HOST (a string).
  7704. Communication with HOST is recorded in a buffer `*rsh-HOST*'.
  7705. Normally input is edited in Emacs and sent a line at a time." t nil)
  7706.  
  7707. ;;;***
  7708.  
  7709. ;;;### (autoloads (term make-term) "term" "term.el" (12749 26402))
  7710. ;;; Generated autoloads from term.el
  7711.  
  7712. (autoload (quote make-term) "term" "\
  7713. Make a term process NAME in a buffer, running PROGRAM.
  7714. The name of the buffer is made by surrounding NAME with `*'s.
  7715. If there is already a running process in that buffer, it is not restarted.
  7716. Optional third arg STARTFILE is the name of a file to send the contents of to 
  7717. the process.  Any more args are arguments to PROGRAM." nil nil)
  7718.  
  7719. (autoload (quote term) "term" "\
  7720. Start a terminal-emulator in a new buffer." t nil)
  7721.  
  7722. ;;;***
  7723.  
  7724. ;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (12629 20482))
  7725. ;;; Generated autoloads from terminal.el
  7726.  
  7727. (autoload (quote terminal-emulator) "terminal" "\
  7728. Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS.
  7729. ARGS is a list of argument-strings.  Remaining arguments are WIDTH and HEIGHT.
  7730. BUFFER's contents are made an image of the display generated by that program,
  7731. and any input typed when BUFFER is the current Emacs buffer is sent to that
  7732. program an keyboard input.
  7733.  
  7734. Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS
  7735. are parsed from an input-string using your usual shell.
  7736. WIDTH and HEIGHT are determined from the size of the current window
  7737. -- WIDTH will be one less than the window's width, HEIGHT will be its height.
  7738.  
  7739. To switch buffers and leave the emulator, or to give commands
  7740. to the emulator itself (as opposed to the program running under it),
  7741. type Control-^.  The following character is an emulator command.
  7742. Type Control-^ twice to send it to the subprogram.
  7743. This escape character may be changed using the variable `terminal-escape-char'.
  7744.  
  7745. `Meta' characters may not currently be sent through the terminal emulator.
  7746.  
  7747. Here is a list of some of the variables which control the behaviour
  7748. of the emulator -- see their documentation for more information:
  7749. terminal-escape-char, terminal-scrolling, terminal-more-processing,
  7750. terminal-redisplay-interval.
  7751.  
  7752. This function calls the value of terminal-mode-hook if that exists
  7753. and is non-nil after the terminal buffer has been set up and the
  7754. subprocess started." t nil)
  7755.  
  7756. ;;;***
  7757.  
  7758. ;;;### (autoloads (tex-start-shell slitex-mode latex-mode plain-tex-mode tex-mode) "tex-mode" "tex-mode.el" (12773 37893))
  7759. ;;; Generated autoloads from tex-mode.el
  7760.  
  7761. (defvar tex-shell-file-name nil "\
  7762. *If non-nil, the shell file name to run in the subshell used to run TeX.")
  7763.  
  7764. (defvar tex-directory "." "\
  7765. *Directory in which temporary files are left.
  7766. You can make this `/tmp' if your TEXINPUTS has no relative directories in it
  7767. and you don't try to apply \\[tex-region] or \\[tex-buffer] when there are
  7768. `\\input' commands with relative directories.")
  7769.  
  7770. (defvar tex-offer-save t "\
  7771. *If non-nil, ask about saving modified buffers before \\[tex-file] is run.")
  7772.  
  7773. (defvar tex-run-command "tex" "\
  7774. *Command used to run TeX subjob.
  7775. If this string contains an asterisk (`*'), that is replaced by the file name;
  7776. otherwise, the file name, preceded by blank, is added at the end.")
  7777.  
  7778. (defvar latex-run-command "latex" "\
  7779. *Command used to run LaTeX subjob.
  7780. If this string contains an asterisk (`*'), that is replaced by the file name;
  7781. otherwise, the file name, preceded by blank, is added at the end.")
  7782.  
  7783. (defvar latex-block-names nil "\
  7784. *User defined LaTeX block names.
  7785. Combined with `standard-latex-block-names' for minibuffer completion.")
  7786.  
  7787. (defvar slitex-run-command "slitex" "\
  7788. *Command used to run SliTeX subjob.
  7789. If this string contains an asterisk (`*'), that is replaced by the file name;
  7790. otherwise, the file name, preceded by blank, is added at the end.")
  7791.  
  7792. (defvar tex-bibtex-command "bibtex" "\
  7793. *Command used by `tex-bibtex-file' to gather bibliographic data.
  7794. If this string contains an asterisk (`*'), that is replaced by the file name;
  7795. otherwise, the file name, preceded by blank, is added at the end.")
  7796.  
  7797. (defvar tex-dvi-print-command "lpr -d" "\
  7798. *Command used by \\[tex-print] to print a .dvi file.
  7799. If this string contains an asterisk (`*'), that is replaced by the file name;
  7800. otherwise, the file name, preceded by blank, is added at the end.")
  7801.  
  7802. (defvar tex-alt-dvi-print-command "lpr -d" "\
  7803. *Command used by \\[tex-print] with a prefix arg to print a .dvi file.
  7804. If this string contains an asterisk (`*'), that is replaced by the file name;
  7805. otherwise, the file name, preceded by blank, is added at the end.
  7806.  
  7807. If two printers are not enough of a choice, you can set the variable
  7808. `tex-alt-dvi-print-command' to an expression that asks what you want;
  7809. for example,
  7810.  
  7811.     (setq tex-alt-dvi-print-command
  7812.          '(format \"lpr -P%s\" (read-string \"Use printer: \")))
  7813.  
  7814. would tell \\[tex-print] with a prefix argument to ask you which printer to
  7815. use.")
  7816.  
  7817. (defvar tex-dvi-view-command nil "\
  7818. *Command used by \\[tex-view] to display a `.dvi' file.
  7819. If this string contains an asterisk (`*'), that is replaced by the file name;
  7820. otherwise, the file name, preceded by blank, is added at the end.
  7821.  
  7822. This can be set conditionally so that the previewer used is suitable for the
  7823. window system being used.  For example,
  7824.  
  7825.     (setq tex-dvi-view-command
  7826.           (if (eq window-system 'x) \"xdvi\" \"dvi2tty * | cat -s\"))
  7827.  
  7828. would tell \\[tex-view] to use xdvi under X windows and to use dvi2tty
  7829. otherwise.")
  7830.  
  7831. (defvar tex-show-queue-command "lpq" "\
  7832. *Command used by \\[tex-show-print-queue] to show the print queue.
  7833. Should show the queue(s) that \\[tex-print] puts jobs on.")
  7834.  
  7835. (defvar tex-default-mode (quote plain-tex-mode) "\
  7836. *Mode to enter for a new file that might be either TeX or LaTeX.
  7837. This variable is used when it can't be determined whether the file
  7838. is plain TeX or LaTeX or what because the file contains no commands.
  7839. Normally set to either `plain-tex-mode' or `latex-mode'.")
  7840.  
  7841. (defvar tex-open-quote "``" "\
  7842. *String inserted by typing \\[tex-insert-quote] to open a quotation.")
  7843.  
  7844. (defvar tex-close-quote "''" "\
  7845. *String inserted by typing \\[tex-insert-quote] to close a quotation.")
  7846.  
  7847. (autoload (quote tex-mode) "tex-mode" "\
  7848. Major mode for editing files of input for TeX, LaTeX, or SliTeX.
  7849. Tries to determine (by looking at the beginning of the file) whether
  7850. this file is for plain TeX, LaTeX, or SliTeX and calls `plain-tex-mode',
  7851. `latex-mode', or `slitex-mode', respectively.  If it cannot be determined,
  7852. such as if there are no commands in the file, the value of `tex-default-mode'
  7853. says which mode to use." t nil)
  7854.  
  7855. (defalias (quote TeX-mode) (quote tex-mode))
  7856.  
  7857. (defalias (quote LaTeX-mode) (quote latex-mode))
  7858.  
  7859. (autoload (quote plain-tex-mode) "tex-mode" "\
  7860. Major mode for editing files of input for plain TeX.
  7861. Makes $ and } display the characters they match.
  7862. Makes \" insert `` when it seems to be the beginning of a quotation,
  7863. and '' when it appears to be the end; it inserts \" only after a \\.
  7864.  
  7865. Use \\[tex-region] to run TeX on the current region, plus a \"header\"
  7866. copied from the top of the file (containing macro definitions, etc.),
  7867. running TeX under a special subshell.  \\[tex-buffer] does the whole buffer.
  7868. \\[tex-file] saves the buffer and then processes the file.
  7869. \\[tex-print] prints the .dvi file made by any of these.
  7870. \\[tex-view] previews the .dvi file made by any of these.
  7871. \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
  7872.  
  7873. Use \\[validate-tex-buffer] to check buffer for paragraphs containing
  7874. mismatched $'s or braces.
  7875.  
  7876. Special commands:
  7877. \\{tex-mode-map}
  7878.  
  7879. Mode variables:
  7880. tex-run-command
  7881.     Command string used by \\[tex-region] or \\[tex-buffer].
  7882. tex-directory
  7883.     Directory in which to create temporary files for TeX jobs
  7884.     run by \\[tex-region] or \\[tex-buffer].
  7885. tex-dvi-print-command
  7886.     Command string used by \\[tex-print] to print a .dvi file.
  7887. tex-alt-dvi-print-command
  7888.     Alternative command string used by \\[tex-print] (when given a prefix
  7889.     argument) to print a .dvi file.
  7890. tex-dvi-view-command
  7891.     Command string used by \\[tex-view] to preview a .dvi file.
  7892. tex-show-queue-command
  7893.     Command string used by \\[tex-show-print-queue] to show the print
  7894.     queue that \\[tex-print] put your job on.
  7895.  
  7896. Entering Plain-tex mode runs the hook `text-mode-hook', then the hook
  7897. `tex-mode-hook', and finally the hook `plain-tex-mode-hook'.  When the
  7898. special subshell is initiated, the hook `tex-shell-hook' is run." t nil)
  7899.  
  7900. (defalias (quote plain-TeX-mode) (quote plain-tex-mode))
  7901.  
  7902. (autoload (quote latex-mode) "tex-mode" "\
  7903. Major mode for editing files of input for LaTeX.
  7904. Makes $ and } display the characters they match.
  7905. Makes \" insert `` when it seems to be the beginning of a quotation,
  7906. and '' when it appears to be the end; it inserts \" only after a \\.
  7907.  
  7908. Use \\[tex-region] to run LaTeX on the current region, plus the preamble
  7909. copied from the top of the file (containing \\documentstyle, etc.),
  7910. running LaTeX under a special subshell.  \\[tex-buffer] does the whole buffer.
  7911. \\[tex-file] saves the buffer and then processes the file.
  7912. \\[tex-print] prints the .dvi file made by any of these.
  7913. \\[tex-view] previews the .dvi file made by any of these.
  7914. \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
  7915.  
  7916. Use \\[validate-tex-buffer] to check buffer for paragraphs containing
  7917. mismatched $'s or braces.
  7918.  
  7919. Special commands:
  7920. \\{tex-mode-map}
  7921.  
  7922. Mode variables:
  7923. latex-run-command
  7924.     Command string used by \\[tex-region] or \\[tex-buffer].
  7925. tex-directory
  7926.     Directory in which to create temporary files for LaTeX jobs
  7927.     run by \\[tex-region] or \\[tex-buffer].
  7928. tex-dvi-print-command
  7929.     Command string used by \\[tex-print] to print a .dvi file.
  7930. tex-alt-dvi-print-command
  7931.     Alternative command string used by \\[tex-print] (when given a prefix
  7932.     argument) to print a .dvi file.
  7933. tex-dvi-view-command
  7934.     Command string used by \\[tex-view] to preview a .dvi file.
  7935. tex-show-queue-command
  7936.     Command string used by \\[tex-show-print-queue] to show the print
  7937.     queue that \\[tex-print] put your job on.
  7938.  
  7939. Entering Latex mode runs the hook `text-mode-hook', then 
  7940. `tex-mode-hook', and finally `latex-mode-hook'.  When the special
  7941. subshell is initiated, `tex-shell-hook' is run." t nil)
  7942.  
  7943. (autoload (quote slitex-mode) "tex-mode" "\
  7944. Major mode for editing files of input for SliTeX.
  7945. Makes $ and } display the characters they match.
  7946. Makes \" insert `` when it seems to be the beginning of a quotation,
  7947. and '' when it appears to be the end; it inserts \" only after a \\.
  7948.  
  7949. Use \\[tex-region] to run SliTeX on the current region, plus the preamble
  7950. copied from the top of the file (containing \\documentstyle, etc.),
  7951. running SliTeX under a special subshell.  \\[tex-buffer] does the whole buffer.
  7952. \\[tex-file] saves the buffer and then processes the file.
  7953. \\[tex-print] prints the .dvi file made by any of these.
  7954. \\[tex-view] previews the .dvi file made by any of these.
  7955. \\[tex-bibtex-file] runs bibtex on the file of the current buffer.
  7956.  
  7957. Use \\[validate-tex-buffer] to check buffer for paragraphs containing
  7958. mismatched $'s or braces.
  7959.  
  7960. Special commands:
  7961. \\{tex-mode-map}
  7962.  
  7963. Mode variables:
  7964. slitex-run-command
  7965.     Command string used by \\[tex-region] or \\[tex-buffer].
  7966. tex-directory
  7967.     Directory in which to create temporary files for SliTeX jobs
  7968.     run by \\[tex-region] or \\[tex-buffer].
  7969. tex-dvi-print-command
  7970.     Command string used by \\[tex-print] to print a .dvi file.
  7971. tex-alt-dvi-print-command
  7972.     Alternative command string used by \\[tex-print] (when given a prefix
  7973.     argument) to print a .dvi file.
  7974. tex-dvi-view-command
  7975.     Command string used by \\[tex-view] to preview a .dvi file.
  7976. tex-show-queue-command
  7977.     Command string used by \\[tex-show-print-queue] to show the print
  7978.     queue that \\[tex-print] put your job on.
  7979.  
  7980. Entering SliTeX mode runs the hook `text-mode-hook', then the hook
  7981. `tex-mode-hook', then the hook `latex-mode-hook', and finally the hook
  7982. `slitex-mode-hook'.  When the special subshell is initiated, the hook
  7983. `tex-shell-hook' is run." t nil)
  7984.  
  7985. (autoload (quote tex-start-shell) "tex-mode" nil nil nil)
  7986.  
  7987. ;;;***
  7988.  
  7989. ;;;### (autoloads (texinfo-format-region texinfo-format-buffer) "texinfmt" "texinfmt.el" (12778 43266))
  7990. ;;; Generated autoloads from texinfmt.el
  7991.  
  7992. (autoload (quote texinfo-format-buffer) "texinfmt" "\
  7993. Process the current buffer as texinfo code, into an Info file.
  7994. The Info file output is generated in a buffer visiting the Info file
  7995. names specified in the @setfilename command.
  7996.  
  7997. Non-nil argument (prefix, if interactive) means don't make tag table
  7998. and don't split the file if large.  You can use Info-tagify and
  7999. Info-split to do these manually." t nil)
  8000.  
  8001. (autoload (quote texinfo-format-region) "texinfmt" "\
  8002. Convert the current region of the Texinfo file to Info format.
  8003. This lets you see what that part of the file will look like in Info.
  8004. The command is bound to \\[texinfo-format-region].  The text that is
  8005. converted to Info is stored in a temporary buffer." t nil)
  8006.  
  8007. ;;;***
  8008.  
  8009. ;;;### (autoloads (texinfo-mode) "texinfo" "texinfo.el" (12604 46234))
  8010. ;;; Generated autoloads from texinfo.el
  8011.  
  8012. (autoload (quote texinfo-mode) "texinfo" "\
  8013. Major mode for editing Texinfo files.
  8014.  
  8015.   It has these extra commands:
  8016. \\{texinfo-mode-map}
  8017.  
  8018.   These are files that are used as input for TeX to make printed manuals
  8019. and also to be turned into Info files with \\[makeinfo-buffer] or
  8020. the `makeinfo' program.  These files must be written in a very restricted and
  8021. modified version of TeX input format.
  8022.  
  8023.   Editing commands are like text-mode except that the syntax table is
  8024. set up so expression commands skip Texinfo bracket groups.  To see
  8025. what the Info version of a region of the Texinfo file will look like,
  8026. use \\[makeinfo-region], which runs `makeinfo' on the current region.
  8027.  
  8028.   You can show the structure of a Texinfo file with \\[texinfo-show-structure].
  8029. This command shows the structure of a Texinfo file by listing the
  8030. lines with the @-sign commands for @chapter, @section, and the like.
  8031. These lines are displayed in another window called the *Occur* window.
  8032. In that window, you can position the cursor over one of the lines and
  8033. use \\[occur-mode-goto-occurrence], to jump to the corresponding spot
  8034. in the Texinfo file.
  8035.  
  8036.   In addition, Texinfo mode provides commands that insert various
  8037. frequently used @-sign commands into the buffer.  You can use these
  8038. commands to save keystrokes.  And you can insert balanced braces with
  8039. \\[texinfo-insert-braces] and later use the command \\[up-list] to
  8040. move forward past the closing brace.
  8041.  
  8042. Also, Texinfo mode provides functions for automatically creating or
  8043. updating menus and node pointers.  These functions
  8044.  
  8045.   * insert the `Next', `Previous' and `Up' pointers of a node,
  8046.   * insert or update the menu for a section, and
  8047.   * create a master menu for a Texinfo source file.
  8048.  
  8049. Here are the functions:
  8050.  
  8051.     texinfo-update-node                \\[texinfo-update-node]
  8052.     texinfo-every-node-update          \\[texinfo-every-node-update]
  8053.     texinfo-sequential-node-update 
  8054.  
  8055.     texinfo-make-menu                  \\[texinfo-make-menu]
  8056.     texinfo-all-menus-update           \\[texinfo-all-menus-update]
  8057.     texinfo-master-menu
  8058.  
  8059.     texinfo-indent-menu-description (column &optional region-p)
  8060.  
  8061. The `texinfo-column-for-description' variable specifies the column to
  8062. which menu descriptions are indented. 
  8063.  
  8064. Passed an argument (a prefix argument, if interactive), the
  8065. `texinfo-update-node' and `texinfo-make-menu' functions do their jobs
  8066. in the region.
  8067.  
  8068. To use the updating commands, you must structure your Texinfo file
  8069. hierarchically, such that each `@node' line, with the exception of the
  8070. Top node, is accompanied by some kind of section line, such as an
  8071. `@chapter' or `@section' line.
  8072.  
  8073. If the file has a `top' node, it must be called `top' or `Top' and
  8074. be the first node in the file.
  8075.  
  8076. Entering Texinfo mode calls the value of text-mode-hook, and then the
  8077. value of texinfo-mode-hook." t nil)
  8078.  
  8079. ;;;***
  8080.  
  8081. ;;;### (autoloads (texinfo-sequential-node-update texinfo-every-node-update texinfo-update-node) "texnfo-upd" "texnfo-upd.el" (12730 54418))
  8082. ;;; Generated autoloads from texnfo-upd.el
  8083.  
  8084. (autoload (quote texinfo-update-node) "texnfo-upd" "\
  8085. Without any prefix argument, update the node in which point is located.
  8086. Non-nil argument (prefix, if interactive) means update the nodes in the
  8087. marked region.
  8088.  
  8089. The functions for creating or updating nodes and menus, and their
  8090. keybindings, are:
  8091.  
  8092.     texinfo-update-node (&optional region-p)    \\[texinfo-update-node]
  8093.     texinfo-every-node-update ()                \\[texinfo-every-node-update]
  8094.     texinfo-sequential-node-update (&optional region-p)
  8095.  
  8096.     texinfo-make-menu (&optional region-p)      \\[texinfo-make-menu]
  8097.     texinfo-all-menus-update ()                 \\[texinfo-all-menus-update]
  8098.     texinfo-master-menu ()
  8099.  
  8100.     texinfo-indent-menu-description (column &optional region-p)
  8101.  
  8102. The `texinfo-column-for-description' variable specifies the column to
  8103. which menu descriptions are indented. Its default value is 32." t nil)
  8104.  
  8105. (autoload (quote texinfo-every-node-update) "texnfo-upd" "\
  8106. Update every node in a Texinfo file." t nil)
  8107.  
  8108. (autoload (quote texinfo-sequential-node-update) "texnfo-upd" "\
  8109. Update one node (or many) in a Texinfo file with sequential pointers.
  8110.  
  8111. This function causes the `Next' or `Previous' pointer to point to the
  8112. immediately preceding or following node, even if it is at a higher or
  8113. lower hierarchical level in the document.  Continually pressing `n' or
  8114. `p' takes you straight through the file.
  8115.  
  8116. Without any prefix argument, update the node in which point is located.
  8117. Non-nil argument (prefix, if interactive) means update the nodes in the
  8118. marked region.
  8119.  
  8120. This command makes it awkward to navigate among sections and
  8121. subsections; it should be used only for those documents that are meant
  8122. to be read like a novel rather than a reference, and for which the
  8123. Info `g*' command is inadequate." t nil)
  8124.  
  8125. ;;;***
  8126.  
  8127. ;;;### (autoloads (thing-at-point bounds-of-thing-at-point forward-thing) "thingatpt" "thingatpt.el" (12536 45574))
  8128. ;;; Generated autoloads from thingatpt.el
  8129.  
  8130. (autoload (quote forward-thing) "thingatpt" "\
  8131. Move forward to the end of the next THING." nil nil)
  8132.  
  8133. (autoload (quote bounds-of-thing-at-point) "thingatpt" "\
  8134. Determine the start and end buffer locations for the THING at point,
  8135. where THING is an entity for which there is a either a corresponding
  8136. forward-THING operation, or corresponding beginning-of-THING and
  8137. end-of-THING operations, eg. 'word, 'sentence, 'defun.
  8138.   Return a cons cell '(start . end) giving the start and end positions." nil nil)
  8139.  
  8140. (autoload (quote thing-at-point) "thingatpt" "\
  8141. Return the THING at point, where THING is an entity defined by
  8142. bounds-of-thing-at-point." nil nil)
  8143.  
  8144. ;;;***
  8145.  
  8146. ;;;### (autoloads (display-time) "time" "time.el" (12786 35123))
  8147. ;;; Generated autoloads from time.el
  8148.  
  8149. (defvar display-time-day-and-date nil "\
  8150. *Non-nil means \\[display-time] should display day and date as well as time.")
  8151.  
  8152. (autoload (quote display-time) "time" "\
  8153. Display current time, load level, and mail flag in mode line of each buffer.
  8154. Updates automatically every minute.
  8155. If `display-time-day-and-date' is non-nil, the current day and date
  8156. are displayed as well.
  8157. After each update, `display-time-hook' is run with `run-hooks'." t nil)
  8158.  
  8159. ;;;***
  8160.  
  8161. ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" "time-stamp.el" (12544 22558))
  8162. ;;; Generated autoloads from time-stamp.el
  8163.  
  8164. (autoload (quote time-stamp) "time-stamp" "\
  8165. Update the time stamp string in the buffer.
  8166. If you put a time stamp template anywhere in the first 8 lines of a file,
  8167. it can be updated every time you save the file.  See the top of
  8168. `time-stamp.el' for a sample.  The template looks like one of the following:
  8169.     Time-stamp: <>
  8170.     Time-stamp: \" \"
  8171. The time stamp is written between the brackets or quotes, resulting in
  8172.     Time-stamp: <95/01/18 10:20:51 gildea>
  8173. Only does its thing if the variable  time-stamp-active  is non-nil.
  8174. Typically used on  write-file-hooks  for automatic time-stamping.
  8175. The format of the time stamp is determined by the variable  time-stamp-format.
  8176. The variables time-stamp-line-limit, time-stamp-start, and time-stamp-end
  8177. control finding the template." t nil)
  8178.  
  8179. (autoload (quote time-stamp-toggle-active) "time-stamp" "\
  8180. Toggle time-stamp-active, setting whether \\[time-stamp] updates a buffer.
  8181. With arg, turn time stamping on if and only if arg is positive." t nil)
  8182.  
  8183. ;;;***
  8184.  
  8185. ;;;### (autoloads (with-timeout run-with-idle-timer add-timeout run-with-timer run-at-time) "timer" "timer.el" (12643 64076))
  8186. ;;; Generated autoloads from timer.el
  8187.  
  8188. (autoload (quote run-at-time) "timer" "\
  8189. Perform an action after a delay of SECS seconds.
  8190. Repeat the action every REPEAT seconds, if REPEAT is non-nil.
  8191. TIME should be a string like \"11:23pm\", nil meaning now, a number of seconds
  8192. from now, or a value from `encode-time'.
  8193. REPEAT may be an integer or floating point number.
  8194. The action is to call FUNCTION with arguments ARGS.
  8195.  
  8196. This function returns a timer object which you can use in `cancel-timer'." t nil)
  8197.  
  8198. (autoload (quote run-with-timer) "timer" "\
  8199. Perform an action after a delay of SECS seconds.
  8200. Repeat the action every REPEAT seconds, if REPEAT is non-nil.
  8201. SECS and REPEAT may be integers or floating point numbers.
  8202. The action is to call FUNCTION with arguments ARGS.
  8203.  
  8204. This function returns a timer object which you can use in `cancel-timer'." t nil)
  8205.  
  8206. (autoload (quote add-timeout) "timer" "\
  8207. Add a timer to run SECS seconds from now, to call FUNCTION on OBJECT.
  8208. If REPEAT is non-nil, repeat the timer every REPEAT seconds.
  8209. This function is for compatibility; see also `run-with-timer'." nil nil)
  8210.  
  8211. (autoload (quote run-with-idle-timer) "timer" "\
  8212. Perform an action the next time Emacs is idle for SECS seconds.
  8213. If REPEAT is non-nil, do this each time Emacs is idle for SECS seconds.
  8214. SECS may be an integer or a floating point number.
  8215. The action is to call FUNCTION with arguments ARGS.
  8216.  
  8217. This function returns a timer object which you can use in `cancel-timer'." t nil)
  8218.  (put 'with-timeout 'lisp-indent-function 1)
  8219.  
  8220. (autoload (quote with-timeout) "timer" "\
  8221. Run BODY, but if it doesn't finish in SECONDS seconds, give up.
  8222. If we give up, we run the TIMEOUT-FORMS and return the value of the last one.
  8223. The call should look like:
  8224.  (with-timeout (SECONDS TIMEOUT-FORMS...) BODY...)
  8225. The timeout is checked whenever Emacs waits for some kind of external
  8226. event (such as keyboard input, input from subprocesses, or a certain time);
  8227. if the program loops without waiting in any way, the timeout will not
  8228. be detected." nil (quote macro))
  8229.  
  8230. ;;;***
  8231.  
  8232. ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" "tmm.el" (12755 34696))
  8233. ;;; Generated autoloads from tmm.el
  8234.  (define-key global-map "\M-`" 'tmm-menubar)
  8235.  (define-key global-map [f10] 'tmm-menubar)
  8236.  (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse)
  8237.  
  8238. (autoload (quote tmm-menubar) "tmm" "\
  8239. Text-mode emulation of looking and choosing from a menubar.
  8240. See the documentation for `tmm-prompt'.
  8241. X-POSITION, if non-nil, specifies a horizontal position within the menu bar;
  8242. we make that menu bar item (the one at that position) the default choice." t nil)
  8243.  
  8244. (autoload (quote tmm-menubar-mouse) "tmm" "\
  8245. Text-mode emulation of looking and choosing from a menubar.
  8246. This command is used when you click the mouse in the menubar
  8247. on a console which has no window system but does have a mouse.
  8248. See the documentation for `tmm-prompt'." t nil)
  8249.  
  8250. (autoload (quote tmm-prompt) "tmm" "\
  8251. Text-mode emulation of calling the bindings in keymap.
  8252. Creates a text-mode menu of possible choices.  You can access the elements
  8253. in the menu in two ways:
  8254.    *)  via history mechanism from minibuffer;
  8255.    *)  Or via completion-buffer that is automatically shown.
  8256. The last alternative is currently a hack, you cannot use mouse reliably.
  8257.  
  8258. MENU is like the MENU argument to `x-popup-menu': either a
  8259. keymap or an alist of alists.
  8260. DEFAULT-ITEM, if non-nil, specifies an initial default choice.
  8261. Its value should be an event that has a binding in MENU." nil nil)
  8262.  
  8263. ;;;***
  8264.  
  8265. ;;;### (autoloads (tpu-edt-on) "tpu-edt" "tpu-edt.el" (12594 16832))
  8266. ;;; Generated autoloads from tpu-edt.el
  8267.  
  8268. (fset (quote tpu-edt-mode) (quote tpu-edt-on))
  8269.  
  8270. (fset (quote tpu-edt) (quote tpu-edt-on))
  8271.  
  8272. (autoload (quote tpu-edt-on) "tpu-edt" "\
  8273. Turn on TPU/edt emulation." t nil)
  8274.  
  8275. ;;;***
  8276.  
  8277. ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) "tpu-extras" "tpu-extras.el" (12536 45574))
  8278. ;;; Generated autoloads from tpu-extras.el
  8279.  
  8280. (autoload (quote tpu-set-scroll-margins) "tpu-extras" "\
  8281. Set scroll margins." t nil)
  8282.  
  8283. (autoload (quote tpu-set-cursor-free) "tpu-extras" "\
  8284. Allow the cursor to move freely about the screen." t nil)
  8285.  
  8286. (autoload (quote tpu-set-cursor-bound) "tpu-extras" "\
  8287. Constrain the cursor to the flow of the text." t nil)
  8288.  
  8289. ;;;***
  8290.  
  8291. ;;;### (autoloads (tq-create) "tq" "tq.el" (12557 20669))
  8292. ;;; Generated autoloads from tq.el
  8293.  
  8294. (autoload (quote tq-create) "tq" "\
  8295. Create and return a transaction queue communicating with PROCESS.
  8296. PROCESS should be a subprocess capable of sending and receiving
  8297. streams of bytes.  It may be a local process, or it may be connected
  8298. to a tcp server on another machine." nil nil)
  8299.  
  8300. ;;;***
  8301.  
  8302. ;;;### (autoloads (trace-function-background trace-function) "trace" "trace.el" (12536 45574))
  8303. ;;; Generated autoloads from trace.el
  8304.  
  8305. (defvar trace-buffer "*trace-output*" "\
  8306. *Trace output will by default go to that buffer.")
  8307.  
  8308. (autoload (quote trace-function) "trace" "\
  8309. Traces FUNCTION with trace output going to BUFFER.
  8310. For every call of FUNCTION Lisp-style trace messages that display argument
  8311. and return values will be inserted into BUFFER. This function generates the
  8312. trace advice for FUNCTION and activates it together with any other advice
  8313. there might be!! The trace BUFFER will popup whenever FUNCTION is called.
  8314. Do not use this to trace functions that switch buffers or do any other
  8315. display oriented stuff, use `trace-function-background' instead." t nil)
  8316.  
  8317. (autoload (quote trace-function-background) "trace" "\
  8318. Traces FUNCTION with trace output going quietly to BUFFER.
  8319. For every call of FUNCTION Lisp-style trace messages that display argument
  8320. and return values will be inserted into BUFFER. This function generates the
  8321. trace advice for FUNCTION and activates it together with any other advice
  8322. there might be!! Trace output will quietly go to BUFFER without changing
  8323. the window or buffer configuration at all." t nil)
  8324.  
  8325. ;;;***
  8326.  
  8327. ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" "two-column.el" (12441 34908))
  8328. ;;; Generated autoloads from two-column.el
  8329.  (autoload '2C-command "two-column" () t 'keymap)
  8330.  
  8331. (global-set-key "6" (quote 2C-command))
  8332.  
  8333. (global-set-key [f2] (quote 2C-command))
  8334.  
  8335. (autoload (quote 2C-two-columns) "two-column" "\
  8336. Split current window vertically for two-column editing.
  8337. When called the first time, associates a buffer with the current
  8338. buffer in two-column minor mode (see  \\[describe-mode] ).
  8339. Runs `2C-other-buffer-hook' in the new buffer.
  8340. When called again, restores the screen layout with the current buffer
  8341. first and the associated buffer to it's right." t nil)
  8342.  
  8343. (autoload (quote 2C-associate-buffer) "two-column" "\
  8344. Associate another buffer with this one in two-column minor mode.
  8345. Can also be used to associate a just previously visited file, by
  8346. accepting the proposed default buffer.
  8347.  
  8348. \(See  \\[describe-mode] .)" t nil)
  8349.  
  8350. (autoload (quote 2C-split) "two-column" "\
  8351. Split a two-column text at point, into two buffers in two-column minor mode.
  8352. Point becomes the local value of `2C-window-width'.  Only lines that
  8353. have the ARG same preceding characters at that column get split.  The
  8354. ARG preceding characters without any leading whitespace become the local
  8355. value for `2C-separator'.  This way lines that continue across both
  8356. columns remain untouched in the first buffer.
  8357.  
  8358. This function can be used with a prototype line, to set up things.  You
  8359. write the first line of each column and then split that line.  E.g.:
  8360.  
  8361. First column's text    sSs  Second column's text
  8362.                \\___/\\
  8363.             /    \\
  8364.    5 character Separator      You type  M-5 \\[2C-split]  with the point here.
  8365.  
  8366. \(See  \\[describe-mode] .)" t nil)
  8367.  
  8368. ;;;***
  8369.  
  8370. ;;;### (autoloads (type-break-guesstimate-keystroke-threshold type-break-statistics type-break type-break-mode) "type-break" "type-break.el" (12785 6539))
  8371. ;;; Generated autoloads from type-break.el
  8372.  
  8373. (defvar type-break-mode nil "\
  8374. *Non-`nil' means typing break mode is enabled.
  8375. See the docstring for the `type-break-mode' command for more information.")
  8376.  
  8377. (defvar type-break-interval (* 60 60) "\
  8378. *Number of seconds between scheduled typing breaks.")
  8379.  
  8380. (defvar type-break-good-rest-interval (/ type-break-interval 6) "\
  8381. *Number of seconds of idle time considered to be an adequate typing rest.
  8382.  
  8383. When this variable is non-`nil', emacs checks the idle time between
  8384. keystrokes.  If this idle time is long enough to be considered a \"good\"
  8385. rest from typing, then the next typing break is simply rescheduled for later.
  8386.  
  8387. If a break is interrupted before this much time elapses, the user will be
  8388. asked whether or not really to interrupt the break.")
  8389.  
  8390. (defvar type-break-keystroke-threshold (let* ((wpm 35) (avg-word-length 5) (upper (* wpm avg-word-length (/ type-break-interval 60))) (lower (/ upper 5))) (cons lower upper)) "\
  8391. *Upper and lower bound on number of keystrokes for considering typing break.
  8392. This structure is a pair of numbers.
  8393.  
  8394. The first number is the minimum number of keystrokes that must have been
  8395. entered since the last typing break before considering another one, even if
  8396. the scheduled time has elapsed; the break is simply rescheduled until later
  8397. if the minimum threshold hasn't been reached.  If this first value is nil,
  8398. then there is no minimum threshold; as soon as the scheduled time has
  8399. elapsed, the user will always be queried.
  8400.  
  8401. The second number is the maximum number of keystrokes that can be entered
  8402. before a typing break is requested immediately, pre-empting the originally
  8403. scheduled break.  If this second value is nil, then no pre-emptive breaks
  8404. will occur; only scheduled ones will.
  8405.  
  8406. Keys with bucky bits (shift, control, meta, etc) are counted as only one
  8407. keystroke even though they really require multiple keys to generate them.
  8408.  
  8409. The command `type-break-guesstimate-keystroke-threshold' can be used to
  8410. guess a reasonably good pair of values for this variable.")
  8411.  
  8412. (autoload (quote type-break-mode) "type-break" "\
  8413. Enable or disable typing-break mode.
  8414. This is a minor mode, but it is global to all buffers by default.
  8415.  
  8416. When this mode is enabled, the user is encouraged to take typing breaks at
  8417. appropriate intervals; either after a specified amount of time or when the
  8418. user has exceeded a keystroke threshold.  When the time arrives, the user
  8419. is asked to take a break.  If the user refuses at that time, emacs will ask
  8420. again in a short period of time.  The idea is to give the user enough time
  8421. to find a good breaking point in his or her work, but be sufficiently
  8422. annoying to discourage putting typing breaks off indefinitely.
  8423.  
  8424. A negative prefix argument disables this mode.
  8425. No argument or any non-negative argument enables it.
  8426.  
  8427. The user may enable or disable this mode by setting the variable of the
  8428. same name, though setting it in that way doesn't reschedule a break or
  8429. reset the keystroke counter.
  8430.  
  8431. If the mode was previously disabled and is enabled as a consequence of
  8432. calling this function, it schedules a break with `type-break-schedule' to
  8433. make sure one occurs (the user can call that command to reschedule the
  8434. break at any time).  It also initializes the keystroke counter.
  8435.  
  8436. The variable `type-break-interval' specifies the number of seconds to
  8437. schedule between regular typing breaks.  This variable doesn't directly
  8438. affect the time schedule; it simply provides a default for the
  8439. `type-break-schedule' command.
  8440.  
  8441. If set, the variable `type-break-good-rest-interval' specifies the minimum
  8442. amount of time which is considered a reasonable typing break.  Whenever
  8443. that time has elapsed, typing breaks are automatically rescheduled for
  8444. later even if emacs didn't prompt you to take one first.  Also, if a break
  8445. is ended before this much time has elapsed, the user will be asked whether
  8446. or not to continue.
  8447.  
  8448. The variable `type-break-keystroke-threshold' is used to determine the
  8449. thresholds at which typing breaks should be considered.  You can use
  8450. the command `type-break-guesstimate-keystroke-threshold' to try to
  8451. approximate good values for this.
  8452.  
  8453. There are several variables that affect how or when warning messages about
  8454. imminent typing breaks are displayed.  They include:
  8455.  
  8456.         type-break-warning-message-mode
  8457.         type-break-time-warning-intervals
  8458.         type-break-keystroke-warning-intervals
  8459.         type-break-warning-repeat
  8460.         type-break-warning-countdown-string
  8461.         type-break-warning-countdown-string-type
  8462.  
  8463. There are several variables that affect how and when queries to begin a
  8464. typing break occur.  They include:
  8465.  
  8466.         type-break-query-function
  8467.         type-break-query-interval
  8468.  
  8469. Finally, the command `type-break-statistics' prints interesting things." t nil)
  8470.  
  8471. (autoload (quote type-break) "type-break" "\
  8472. Take a typing break.
  8473.  
  8474. During the break, a demo selected from the functions listed in
  8475. `type-break-demo-functions' is run.
  8476.  
  8477. After the typing break is finished, the next break is scheduled
  8478. as per the function `type-break-schedule'." t nil)
  8479.  
  8480. (autoload (quote type-break-statistics) "type-break" "\
  8481. Print statistics about typing breaks in a temporary buffer.
  8482. This includes the last time a typing break was taken, when the next one is
  8483. scheduled, the keystroke thresholds and the current keystroke count, etc." t nil)
  8484.  
  8485. (autoload (quote type-break-guesstimate-keystroke-threshold) "type-break" "\
  8486. Guess values for the minimum/maximum keystroke threshold for typing breaks.
  8487.  
  8488. If called interactively, the user is prompted for their guess as to how
  8489. many words per minute they usually type.  This value should not be your
  8490. maximum WPM, but your average.  Of course, this is harder to gauge since it
  8491. can vary considerably depending on what you are doing.  For example, one
  8492. tends actually to type less when debugging a program, as opposed to writing
  8493. documentation.  (Perhaps a separate program should be written to estimate
  8494. average typing speed.)
  8495.  
  8496. From that, this command sets the values in `type-break-keystroke-threshold'
  8497. based on a fairly simple algorithm involving assumptions about the average
  8498. length of words (5).  For the minimum threshold, it uses about a fifth of
  8499. the computed maximum threshold.
  8500.  
  8501. When called from lisp programs, the optional args WORDLEN and FRAC can be
  8502. used to override the default assumption about average word length and the
  8503. fraction of the maximum threshold to which to set the minimum threshold.
  8504. FRAC should be the inverse of the fractional value; for example, a value of
  8505. 2 would mean to use one half, a value of 4 would mean to use one quarter, etc." t nil)
  8506.  
  8507. ;;;***
  8508.  
  8509. ;;;### (autoloads (ununderline-region underline-region) "underline" "underline.el" (12536 45574))
  8510. ;;; Generated autoloads from underline.el
  8511.  
  8512. (autoload (quote underline-region) "underline" "\
  8513. Underline all nonblank characters in the region.
  8514. Works by overstriking underscores.
  8515. Called from program, takes two arguments START and END
  8516. which specify the range to operate on." t nil)
  8517.  
  8518. (autoload (quote ununderline-region) "underline" "\
  8519. Remove all underlining (overstruck underscores) in the region.
  8520. Called from program, takes two arguments START and END
  8521. which specify the range to operate on." t nil)
  8522.  
  8523. ;;;***
  8524.  
  8525. ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "unrmail.el" (12550 48090))
  8526. ;;; Generated autoloads from unrmail.el
  8527.  
  8528. (autoload (quote batch-unrmail) "unrmail" "\
  8529. Convert Rmail files to system inbox format.
  8530. Specify the input Rmail file names as command line arguments.
  8531. For each Rmail file, the corresponding output file name
  8532. is made by adding `.mail' at the end.
  8533. For example, invoke `emacs -batch -f batch-unrmail RMAIL'." nil nil)
  8534.  
  8535. (autoload (quote unrmail) "unrmail" "\
  8536. Convert Rmail file FILE to system inbox format file TO-FILE." t nil)
  8537.  
  8538. ;;;***
  8539.  
  8540. ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "userlock.el" (12757 35884))
  8541. ;;; Generated autoloads from userlock.el
  8542.  
  8543. (autoload (quote ask-user-about-lock) "userlock" "\
  8544. Ask user what to do when he wants to edit FILE but it is locked by USER.
  8545. This function has a choice of three things to do:
  8546.   do (signal 'buffer-file-locked (list FILE USER))
  8547.     to refrain from editing the file
  8548.   return t (grab the lock on the file)
  8549.   return nil (edit the file even though it is locked).
  8550. You can rewrite it to use any criterion you like to choose which one to do." nil nil)
  8551.  
  8552. (autoload (quote ask-user-about-supersession-threat) "userlock" "\
  8553. Ask a user who is about to modify an obsolete buffer what to do.
  8554. This function has two choices: it can return, in which case the modification
  8555. of the buffer will proceed, or it can (signal 'file-supersession (file)),
  8556. in which case the proposed buffer modification will not be made.
  8557.  
  8558. You can rewrite this to use any criterion you like to choose which one to do.
  8559. The buffer in question is current when this function is called." nil nil)
  8560.  
  8561. ;;;***
  8562.  
  8563. ;;;### (autoloads (vc-update-change-log vc-rename-file vc-cancel-version vc-revert-buffer vc-print-log vc-retrieve-snapshot vc-create-snapshot vc-directory vc-insert-headers vc-version-other-window vc-diff vc-register vc-next-action) "vc" "vc.el" (12793 14043))
  8564. ;;; Generated autoloads from vc.el
  8565.  
  8566. (defvar vc-checkin-hook nil "\
  8567. *List of functions called after a checkin is done.  See `run-hooks'.")
  8568.  
  8569. (autoload (quote vc-next-action) "vc" "\
  8570. Do the next logical checkin or checkout operation on the current file.
  8571.    If you call this from within a VC dired buffer with no files marked,
  8572. it will operate on the file in the current line.
  8573.    If you call this from within a VC dired buffer, and one or more
  8574. files are marked, it will accept a log message and then operate on
  8575. each one.  The log message will be used as a comment for any register
  8576. or checkin operations, but ignored when doing checkouts.  Attempted
  8577. lock steals will raise an error.
  8578.    A prefix argument lets you specify the version number to use.
  8579.  
  8580. For RCS and SCCS files:
  8581.    If the file is not already registered, this registers it for version
  8582. control and then retrieves a writable, locked copy for editing.
  8583.    If the file is registered and not locked by anyone, this checks out
  8584. a writable and locked file ready for editing.
  8585.    If the file is checked out and locked by the calling user, this
  8586. first checks to see if the file has changed since checkout.  If not,
  8587. it performs a revert.
  8588.    If the file has been changed, this pops up a buffer for entry
  8589. of a log message; when the message has been entered, it checks in the
  8590. resulting changes along with the log message as change commentary.  If
  8591. the variable `vc-keep-workfiles' is non-nil (which is its default), a
  8592. read-only copy of the changed file is left in place afterwards.
  8593.    If the file is registered and locked by someone else, you are given
  8594. the option to steal the lock.
  8595.  
  8596. For CVS files:
  8597.    If the file is not already registered, this registers it for version
  8598. control.  This does a \"cvs add\", but no \"cvs commit\".
  8599.    If the file is added but not committed, it is committed.
  8600.    If your working file is changed, but the repository file is
  8601. unchanged, this pops up a buffer for entry of a log message; when the
  8602. message has been entered, it checks in the resulting changes along
  8603. with the logmessage as change commentary.  A writable file is retained.
  8604.    If the repository file is changed, you are asked if you want to
  8605. merge in the changes into your working copy." t nil)
  8606.  
  8607. (autoload (quote vc-register) "vc" "\
  8608. Register the current file into your version-control system." t nil)
  8609.  
  8610. (autoload (quote vc-diff) "vc" "\
  8611. Display diffs between file versions.
  8612. Normally this compares the current file and buffer with the most recent 
  8613. checked in version of that file.  This uses no arguments.
  8614. With a prefix argument, it reads the file name to use
  8615. and two version designators specifying which versions to compare." t nil)
  8616.  
  8617. (autoload (quote vc-version-other-window) "vc" "\
  8618. Visit version REV of the current buffer in another window.
  8619. If the current buffer is named `F', the version is named `F.~REV~'.
  8620. If `F.~REV~' already exists, it is used instead of being re-created." t nil)
  8621.  
  8622. (autoload (quote vc-insert-headers) "vc" "\
  8623. Insert headers in a file for use with your version-control system.
  8624. Headers desired are inserted at the start of the buffer, and are pulled from
  8625. the variable `vc-header-alist'." t nil)
  8626.  
  8627. (autoload (quote vc-directory) "vc" "\
  8628. Show version-control status of the current directory and subdirectories.
  8629. Normally it creates a Dired buffer that lists only the locked files
  8630. in all these directories.  With a prefix argument, it lists all files." t nil)
  8631.  
  8632. (autoload (quote vc-create-snapshot) "vc" "\
  8633. Make a snapshot called NAME.
  8634. The snapshot is made from all registered files at or below the current
  8635. directory.  For each file, the version level of its latest
  8636. version becomes part of the named configuration." t nil)
  8637.  
  8638. (autoload (quote vc-retrieve-snapshot) "vc" "\
  8639. Retrieve the snapshot called NAME.
  8640. This function fails if any files are locked at or below the current directory
  8641. Otherwise, all registered files are checked out (unlocked) at their version
  8642. levels in the snapshot." t nil)
  8643.  
  8644. (autoload (quote vc-print-log) "vc" "\
  8645. List the change log of the current buffer in a window." t nil)
  8646.  
  8647. (autoload (quote vc-revert-buffer) "vc" "\
  8648. Revert the current buffer's file back to the latest checked-in version.
  8649. This asks for confirmation if the buffer contents are not identical
  8650. to that version.
  8651. If the back-end is CVS, this will give you the most recent revision of
  8652. the file on the branch you are editing." t nil)
  8653.  
  8654. (autoload (quote vc-cancel-version) "vc" "\
  8655. Get rid of most recently checked in version of this file.
  8656. A prefix argument means do not revert the buffer afterwards." t nil)
  8657.  
  8658. (autoload (quote vc-rename-file) "vc" "\
  8659. Rename file OLD to NEW, and rename its master file likewise." t nil)
  8660.  
  8661. (autoload (quote vc-update-change-log) "vc" "\
  8662. Find change log file and add entries from recent RCS logs.
  8663. The mark is left at the end of the text prepended to the change log.
  8664. With prefix arg of C-u, only find log entries for the current buffer's file.
  8665. With any numeric prefix arg, find log entries for all files currently visited.
  8666. Otherwise, find log entries for all registered files in the default directory.
  8667. From a program, any arguments are passed to the `rcs2log' script." t nil)
  8668.  
  8669. ;;;***
  8670.  
  8671. ;;;### (autoloads (vi-mode) "vi" "vi.el" (12524 24198))
  8672. ;;; Generated autoloads from vi.el
  8673.  
  8674. (autoload (quote vi-mode) "vi" "\
  8675. Major mode that acts like the `vi' editor.
  8676. The purpose of this mode is to provide you the combined power of vi (namely,
  8677. the \"cross product\" effect of commands and repeat last changes) and Emacs.
  8678.  
  8679. This command redefines nearly all keys to look like vi commands.
  8680. It records the previous major mode, and any vi command for input
  8681. \(`i', `a', `s', etc.) switches back to that mode.
  8682. Thus, ordinary Emacs (in whatever major mode you had been using)
  8683. is \"input\" mode as far as vi is concerned.
  8684.  
  8685. To get back into vi from \"input\" mode, you must issue this command again.
  8686. Therefore, it is recommended that you assign it to a key.
  8687.  
  8688. Major differences between this mode and real vi :
  8689.  
  8690. * Limitations and unsupported features
  8691.   - Search patterns with line offset (e.g. /pat/+3 or /pat/z.) are
  8692.     not supported.
  8693.   - Ex commands are not implemented; try ':' to get some hints.
  8694.   - No line undo (i.e. the 'U' command), but multi-undo is a standard feature.
  8695.  
  8696. * Modifications
  8697.   - The stopping positions for some point motion commands (word boundary,
  8698.     pattern search) are slightly different from standard 'vi'.
  8699.     Also, no automatic wrap around at end of buffer for pattern searching.
  8700.   - Since changes are done in two steps (deletion then insertion), you need
  8701.     to undo twice to completely undo a change command.  But this is not needed
  8702.     for undoing a repeated change command.
  8703.   - No need to set/unset 'magic', to search for a string with regular expr
  8704.     in it just put a prefix arg for the search commands.  Replace cmds too.
  8705.   - ^R is bound to incremental backward search, so use ^L to redraw screen.
  8706.  
  8707. * Extensions
  8708.   - Some standard (or modified) Emacs commands were integrated, such as
  8709.     incremental search, query replace, transpose objects, and keyboard macros.
  8710.   - In command state, ^X links to the 'ctl-x-map', and ESC can be linked to
  8711.     esc-map or set undefined.  These can give you the full power of Emacs.
  8712.   - See vi-com-map for those keys that are extensions to standard vi, e.g.
  8713.     `vi-name-last-change-or-macro', `vi-verify-spelling', `vi-locate-def',
  8714.     `vi-mark-region', and 'vi-quote-words'.  Some of them are quite handy.
  8715.   - Use \\[vi-switch-mode] to switch among different modes quickly.
  8716.  
  8717. Syntax table and abbrevs while in vi mode remain as they were in Emacs." t nil)
  8718.  
  8719. ;;;***
  8720.  
  8721. ;;;### (autoloads (view-mode view-buffer-other-window view-buffer view-file-other-window view-file) "view" "view.el" (12784 31023))
  8722. ;;; Generated autoloads from view.el
  8723.  
  8724. (defvar view-highlight-face (quote highlight) "\
  8725. *The overlay face used for highlighting the match found by View mode search.")
  8726.  
  8727. (autoload (quote view-file) "view" "\
  8728. View FILE in View mode, returning to previous buffer when done.
  8729. The usual Emacs commands are not available; instead,
  8730. a special set of commands (mostly letters and punctuation)
  8731. are defined for moving around in the buffer.
  8732. Space scrolls forward, Delete scrolls backward.
  8733. For list of all View commands, type ? or h while viewing.
  8734.  
  8735. This command runs the normal hook `view-mode-hook'." t nil)
  8736.  
  8737. (autoload (quote view-file-other-window) "view" "\
  8738. View FILE in View mode in other window.
  8739. Return to previous buffer when done.
  8740. The usual Emacs commands are not available; instead,
  8741. a special set of commands (mostly letters and punctuation)
  8742. are defined for moving around in the buffer.
  8743. Space scrolls forward, Delete scrolls backward.
  8744. For list of all View commands, type ? or h while viewing.
  8745.  
  8746. This command runs the normal hook `view-mode-hook'." t nil)
  8747.  
  8748. (autoload (quote view-buffer) "view" "\
  8749. View BUFFER in View mode, returning to previous buffer when done.
  8750. The usual Emacs commands are not available; instead,
  8751. a special set of commands (mostly letters and punctuation)
  8752. are defined for moving around in the buffer.
  8753. Space scrolls forward, Delete scrolls backward.
  8754. For list of all View commands, type ? or h while viewing.
  8755.  
  8756. This command runs the normal hook `view-mode-hook'." t nil)
  8757.  
  8758. (autoload (quote view-buffer-other-window) "view" "\
  8759. View BUFFER in View mode in another window.
  8760. Return to previous buffer when done, unless NOT-RETURN is non-nil.
  8761.  
  8762. The usual Emacs commands are not available in View mode; instead,
  8763. a special set of commands (mostly letters and punctuation)
  8764. are defined for moving around in the buffer.
  8765. Space scrolls forward, Delete scrolls backward.
  8766. For list of all View commands, type ? or h while viewing.
  8767.  
  8768. This command runs the normal hook `view-mode-hook'." t nil)
  8769.  
  8770. (autoload (quote view-mode) "view" "\
  8771. Toggle View mode.
  8772. With a prefix argument, turn View mode on if the argument is >= zero
  8773. and off if it is not.
  8774.  
  8775. If you use this function to turn on View mode, then subsequently
  8776. \"exiting\" View mode does nothing except turn View mode off.  The
  8777. other way to turn View mode on is by calling `view-mode-enter';
  8778. that is what Lisp programs usually use.
  8779.  
  8780. Letters do not insert themselves.  Instead these commands are provided.
  8781. Most commands take prefix arguments.  Commands dealing with lines
  8782. default to \"scroll size\" lines (initially size of window).
  8783. Search commands default to a repeat count of one.
  8784.  
  8785. M-< or <    move to beginning of buffer.
  8786. M-> or >    move to end of buffer.
  8787. C-v or Space    scroll forward lines.
  8788. M-v or DEL    scroll backward lines.
  8789. CR or LF    scroll forward one line (backward with prefix argument).
  8790. z        like Space except set number of lines for further
  8791.            scrolling commands to scroll by.
  8792. C-u and Digits    provide prefix arguments.  `-' denotes negative argument.
  8793. =        prints the current line number.
  8794. g        goes to line given by prefix argument.
  8795. / or M-C-s    searches forward for regular expression
  8796. \\ or M-C-r    searches backward for regular expression.
  8797. n        searches forward for last regular expression.
  8798. p        searches backward for last regular expression.
  8799. C-@ or .    set the mark.
  8800. x        exchanges point and mark.
  8801. C-s or s    do forward incremental search.
  8802. C-r or r    do reverse incremental search.
  8803. @ or '        return to mark and pops mark ring.
  8804.           Mark ring is pushed at start of every
  8805.           successful search and when jump to line to occurs.
  8806.           The mark is set on jump to buffer start or end.
  8807. ? or h        provide help message (list of commands).
  8808. \\[help-command]        provides help (list of commands or description of a command).
  8809. C-n        moves down lines vertically.
  8810. C-p        moves upward lines vertically.
  8811. C-l        recenters the screen.
  8812. q        exit view-mode and return to previous buffer." t nil)
  8813.  
  8814. ;;;***
  8815.  
  8816. ;;;### (autoloads (vip-mode) "vip" "vip.el" (12557 20678))
  8817. ;;; Generated autoloads from vip.el
  8818.  
  8819. (autoload (quote vip-mode) "vip" "\
  8820. Turn on VIP emulation of VI." t nil)
  8821.  
  8822. ;;;***
  8823.  
  8824. ;;;### (autoloads (viper-mode) "viper" "viper.el" (12786 34058))
  8825. ;;; Generated autoloads from viper.el
  8826.  
  8827. (autoload (quote viper-mode) "viper" "\
  8828. Turn on Viper emulation of Vi." t nil)
  8829.  
  8830. (defalias (quote vip-mode) (quote viper-mode))
  8831.  
  8832. ;;;***
  8833.  
  8834. ;;;### (autoloads (wordstar-mode) "ws-mode" "ws-mode.el" (12536 45574))
  8835. ;;; Generated autoloads from ws-mode.el
  8836.  
  8837. (autoload (quote wordstar-mode) "ws-mode" "\
  8838. Major mode with WordStar-like key bindings.
  8839.  
  8840. BUGS:
  8841.  - Help menus with WordStar commands (C-j just calls help-for-help)
  8842.    are not implemented
  8843.  - Options for search and replace
  8844.  - Show markers (C-k h) is somewhat strange
  8845.  - Search and replace (C-q a) is only available in forward direction
  8846.  
  8847. No key bindings beginning with ESC are installed, they will work
  8848. Emacs-like.
  8849.  
  8850. The key bindings are:
  8851.  
  8852.   C-a        backward-word
  8853.   C-b        fill-paragraph
  8854.   C-c        scroll-up-line
  8855.   C-d        forward-char
  8856.   C-e        previous-line
  8857.   C-f        forward-word
  8858.   C-g        delete-char
  8859.   C-h        backward-char
  8860.   C-i        indent-for-tab-command
  8861.   C-j        help-for-help
  8862.   C-k        ordstar-C-k-map
  8863.   C-l        ws-repeat-search
  8864.   C-n        open-line
  8865.   C-p        quoted-insert
  8866.   C-r        scroll-down-line
  8867.   C-s        backward-char
  8868.   C-t        kill-word
  8869.   C-u        keyboard-quit
  8870.   C-v        overwrite-mode
  8871.   C-w        scroll-down
  8872.   C-x        next-line
  8873.   C-y        kill-complete-line
  8874.   C-z        scroll-up
  8875.  
  8876.   C-k 0        ws-set-marker-0
  8877.   C-k 1        ws-set-marker-1
  8878.   C-k 2        ws-set-marker-2
  8879.   C-k 3        ws-set-marker-3
  8880.   C-k 4        ws-set-marker-4
  8881.   C-k 5        ws-set-marker-5
  8882.   C-k 6        ws-set-marker-6
  8883.   C-k 7        ws-set-marker-7
  8884.   C-k 8        ws-set-marker-8
  8885.   C-k 9        ws-set-marker-9
  8886.   C-k b        ws-begin-block
  8887.   C-k c        ws-copy-block
  8888.   C-k d        save-buffers-kill-emacs
  8889.   C-k f        find-file
  8890.   C-k h        ws-show-markers
  8891.   C-k i        ws-indent-block
  8892.   C-k k        ws-end-block
  8893.   C-k p        ws-print-block
  8894.   C-k q        kill-emacs
  8895.   C-k r        insert-file
  8896.   C-k s        save-some-buffers
  8897.   C-k t        ws-mark-word
  8898.   C-k u        ws-exdent-block
  8899.   C-k C-u    keyboard-quit
  8900.   C-k v        ws-move-block
  8901.   C-k w        ws-write-block
  8902.   C-k x        kill-emacs
  8903.   C-k y        ws-delete-block
  8904.  
  8905.   C-o c        wordstar-center-line
  8906.   C-o b        switch-to-buffer
  8907.   C-o j        justify-current-line
  8908.   C-o k        kill-buffer
  8909.   C-o l        list-buffers
  8910.   C-o m        auto-fill-mode
  8911.   C-o r        set-fill-column
  8912.   C-o C-u    keyboard-quit
  8913.   C-o wd    delete-other-windows
  8914.   C-o wh    split-window-horizontally
  8915.   C-o wo    other-window
  8916.   C-o wv    split-window-vertically
  8917.  
  8918.   C-q 0        ws-find-marker-0
  8919.   C-q 1        ws-find-marker-1
  8920.   C-q 2        ws-find-marker-2
  8921.   C-q 3        ws-find-marker-3
  8922.   C-q 4        ws-find-marker-4
  8923.   C-q 5        ws-find-marker-5
  8924.   C-q 6        ws-find-marker-6
  8925.   C-q 7        ws-find-marker-7
  8926.   C-q 8        ws-find-marker-8
  8927.   C-q 9        ws-find-marker-9
  8928.   C-q a        ws-query-replace
  8929.   C-q b        ws-to-block-begin
  8930.   C-q c        end-of-buffer
  8931.   C-q d        end-of-line
  8932.   C-q f        ws-search
  8933.   C-q k        ws-to-block-end
  8934.   C-q l        ws-undo
  8935.   C-q p        ws-last-cursorp
  8936.   C-q r        beginning-of-buffer
  8937.   C-q C-u    keyboard-quit
  8938.   C-q w        ws-last-error
  8939.   C-q y        ws-kill-eol
  8940.   C-q DEL    ws-kill-bol
  8941. " t nil)
  8942.  
  8943. ;;;***
  8944.  
  8945. ;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (12724 45031))
  8946. ;;; Generated autoloads from xt-mouse.el
  8947.  
  8948. (autoload (quote xterm-mouse-mode) "xt-mouse" "\
  8949. Toggle XTerm mouse mode.
  8950. With prefix arg, turn XTerm mouse mode on iff arg is positive.
  8951.  
  8952. Turn it on to use emacs mouse commands, and off to use xterm mouse commands." t nil)
  8953.  
  8954. ;;;***
  8955.  
  8956. ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism yow) "yow" "yow.el" (12536 45574))
  8957. ;;; Generated autoloads from yow.el
  8958.  
  8959. (autoload (quote yow) "yow" "\
  8960. Return or display a random Zippy quotation.  With prefix arg, insert it." t nil)
  8961.  
  8962. (autoload (quote insert-zippyism) "yow" "\
  8963. Prompt with completion for a known Zippy quotation, and insert it at point." t nil)
  8964.  
  8965. (autoload (quote apropos-zippy) "yow" "\
  8966. Return a list of all Zippy quotes matching REGEXP.
  8967. If called interactively, display a list of matches." t nil)
  8968.  
  8969. (autoload (quote psychoanalyze-pinhead) "yow" "\
  8970. Zippy goes to the analyst." t nil)
  8971.  
  8972. ;;;***
  8973.  
  8974. ;;; Don't make backup versions of this file - most of it is generated
  8975. ;;; automatically by autoload.el, and what isn't changes rarely.
  8976. ;;; Local Variables:
  8977. ;;; version-control: never
  8978. ;;; no-byte-compile: t
  8979. ;;; no-update-autoloads: t
  8980. ;;; End:
  8981. ;;; loaddefs.el ends here
  8982.